{
"cells": [
{
"cell_type": "markdown",
"id": "340c92c6",
"metadata": {},
"source": [
"Tristan Hoellinger \n",
"Institut d'Astrophysique de Paris\n",
"tristan.hoellinger@iap.fr"
]
},
{
"cell_type": "markdown",
"id": "94047ef1",
"metadata": {},
"source": [
"# P3M force diagnostic"
]
},
{
"cell_type": "markdown",
"id": "cd240b53",
"metadata": {},
"source": [
"## Set up the environment and parameters"
]
},
{
"cell_type": "code",
"execution_count": 1,
"id": "1dfed55e",
"metadata": {},
"outputs": [],
"source": [
"# pyright: reportWildcardImportFromLibrary=false\n",
"from wip3m import *"
]
},
{
"cell_type": "code",
"execution_count": 2,
"id": "aea2278a",
"metadata": {},
"outputs": [],
"source": [
"workdir = ROOT_PATH + \"results/\"\n",
"output_path = OUTPUT_PATH\n",
"\n",
"L = 64 # Box size in Mpc/h\n",
"N = 32 # Density grid size\n",
"Np = 32 # Number of dark matter particles per spatial dimension\n",
"Npm = 64 # PM grid size\n",
"n_Tiles = 8 # Make sure Npm/n_Tiles >= 6\n",
"\n",
"go_beyond_Nyquist_ss = True # for the summary statistics\n",
"\n",
"force = False\n",
"force_hard = False\n",
"run_id = \"forcediag1\"\n",
"\n",
"# Good set of parameters for the force diagnostic\n",
"# nPairsForceDiagnostic_spm = nPairsForceDiagnostic_p3m = 3\n",
"# nBinsForceDiagnostic = 30\n",
"# maxTrialsForceDiagnostic = int(1e9)\n",
"\n",
"# Faster force diagnostic\n",
"nPairsForceDiagnostic_spm = nPairsForceDiagnostic_p3m = 3\n",
"nBinsForceDiagnostic = 20\n",
"maxTrialsForceDiagnostic = int(1e8)\n",
"\n",
"# Simulation parameters\n",
"# nsteps_spm = 200\n",
"# nsteps_p3m = 200\n",
"nsteps_spm = 20\n",
"nsteps_p3m = 20"
]
},
{
"cell_type": "code",
"execution_count": 3,
"id": "28a4e070",
"metadata": {},
"outputs": [],
"source": [
"# Automatic reloading of modules\n",
"%load_ext autoreload\n",
"%autoreload 2\n",
"\n",
"from os.path import isfile\n",
"from pathlib import Path\n",
"import numpy as np\n",
"\n",
"from pysbmy import pySbmy\n",
"from pysbmy.power import PowerSpectrum\n",
"from pysbmy.field import read_field\n",
"\n",
"from wip3m.tools import get_k_max, generate_sim_params, generate_white_noise_Field\n",
"from wip3m.params import params_planck_kmax_missing, cosmo_small_to_full_dict, z2a, BASELINE_SEEDPHASE\n",
"from wip3m.plot_utils import * # type: ignore"
]
},
{
"cell_type": "code",
"execution_count": 4,
"id": "3f0eaa51",
"metadata": {},
"outputs": [
{
"name": "stdout",
"output_type": "stream",
"text": [
"k_max = 2.721\n"
]
}
],
"source": [
"corner = 0.0\n",
"RedshiftLPT = 19.0\n",
"RedshiftFCs = 0.0\n",
"ai = z2a(RedshiftLPT)\n",
"af = z2a(RedshiftFCs)\n",
"k_max = get_k_max(L, N) # k_max in h/Mpc\n",
"print(f\"k_max = {k_max}\")\n",
"cosmo = params_planck_kmax_missing.copy()\n",
"cosmo[\"k_max\"] = k_max\n",
"\n",
"wd = workdir + run_id + \"/\"\n",
"simdir = output_path + run_id + \"/\"\n",
"logdir = simdir + \"logs/\"\n",
"if force_hard:\n",
" import shutil\n",
" if Path(simdir).exists():\n",
" shutil.rmtree(simdir)\n",
" if Path(wd).exists():\n",
" shutil.rmtree(wd)\n",
"Path(wd).mkdir(parents=True, exist_ok=True)\n",
"Path(logdir).mkdir(parents=True, exist_ok=True)\n",
"\n",
"input_white_noise_file = simdir + \"input_white_noise.h5\"\n",
"input_seed_phase_file = simdir + \"seed\"\n",
"ICs_path = simdir + \"initial_density.h5\"\n",
"simpath = simdir\n",
"\n",
"# Path to the input matter power spectrum (generated later)\n",
"input_power_file = simdir + \"input_power.h5\"\n",
"\n",
"# Paths the the force diagnostic CSVs\n",
"OutputForceDiagnostic_spm = simdir + \"force_diagnostic_spm.txt\"\n",
"OutputForceDiagnostic_p3m = simdir + \"force_diagnostic_p3m.txt\""
]
},
{
"cell_type": "markdown",
"id": "4f013d1f",
"metadata": {},
"source": [
"### Generate the parameter files"
]
},
{
"cell_type": "markdown",
"id": "88742aca",
"metadata": {},
"source": [
"The first preparatory step is to generate all the parameter files required for all the simulations.\n",
"\n",
"To this end we use the `generate_sim_params` function defined in `params.py`."
]
},
{
"cell_type": "code",
"execution_count": 5,
"id": "dd3f8a0c",
"metadata": {},
"outputs": [],
"source": [
"common_params = {\n",
" \"Np\": Np,\n",
" \"N\": N,\n",
" \"L\": L,\n",
" \"corner0\": corner,\n",
" \"corner1\": corner,\n",
" \"corner2\": corner,\n",
" \"h\": cosmo[\"h\"],\n",
" \"Omega_m\": cosmo[\"Omega_m\"],\n",
" \"Omega_b\": cosmo[\"Omega_b\"],\n",
" \"n_s\": cosmo[\"n_s\"],\n",
" \"sigma8\": cosmo[\"sigma8\"],\n",
"}\n",
"\n",
"lpt_params = common_params.copy()\n",
"lpt_params[\"method\"] = \"lpt\"\n",
"lpt_params[\"InputPowerSpectrum\"] = input_power_file\n",
"lpt_params[\"ICsMode\"] = 1\n",
"lpt_params[\"InputWhiteNoise\"] = input_white_noise_file\n",
"\n",
"spm_params = common_params.copy()\n",
"spm_params[\"method\"] = \"spm\"\n",
"spm_params[\"EvolutionMode\"] = 5\n",
"spm_params[\"TimeStepDistribution\"] = 0\n",
"spm_params[\"ai\"] = ai\n",
"spm_params[\"af\"] = af\n",
"spm_params[\"RedshiftLPT\"] = RedshiftLPT\n",
"spm_params[\"RedshiftFCs\"] = RedshiftFCs\n",
"spm_params[\"Npm\"] = Npm\n",
"spm_params[\"nsteps\"] = nsteps_spm\n",
"spm_params[\"n_Tiles\"] = n_Tiles\n",
"spm_params[\"RunForceDiagnostic\"] = True\n",
"spm_params[\"nPairsForceDiagnostic\"] = nPairsForceDiagnostic_spm\n",
"spm_params[\"nBinsForceDiagnostic\"] = nBinsForceDiagnostic\n",
"spm_params[\"OutputForceDiagnostic\"] = OutputForceDiagnostic_spm\n",
"spm_params[\"maxTrialsForceDiagnostic\"] = maxTrialsForceDiagnostic\n",
"\n",
"p3m_params = common_params.copy()\n",
"p3m_params[\"method\"] = \"p3m\"\n",
"p3m_params[\"EvolutionMode\"] = 4\n",
"p3m_params[\"TimeStepDistribution\"] = 0\n",
"p3m_params[\"ai\"] = ai\n",
"p3m_params[\"af\"] = af\n",
"p3m_params[\"RedshiftLPT\"] = RedshiftLPT\n",
"p3m_params[\"RedshiftFCs\"] = RedshiftFCs\n",
"p3m_params[\"Npm\"] = Npm\n",
"p3m_params[\"nsteps\"] = nsteps_p3m\n",
"p3m_params[\"n_Tiles\"] = n_Tiles\n",
"p3m_params[\"RunForceDiagnostic\"] = True\n",
"p3m_params[\"nPairsForceDiagnostic\"] = nPairsForceDiagnostic_p3m\n",
"p3m_params[\"nBinsForceDiagnostic\"] = nBinsForceDiagnostic\n",
"p3m_params[\"OutputForceDiagnostic\"] = OutputForceDiagnostic_p3m\n",
"p3m_params[\"maxTrialsForceDiagnostic\"] = maxTrialsForceDiagnostic"
]
},
{
"cell_type": "code",
"execution_count": 6,
"id": "1d617059",
"metadata": {},
"outputs": [
{
"name": "stdout",
"output_type": "stream",
"text": [
"[02:24:14|\u001b[1;36mINFO \u001b[00m]|\u001b[38;5;147m(wip3m.tools)\u001b[00m Generating parameter file...\n",
"[02:24:14|\u001b[1;36mINFO \u001b[00m]|\u001b[38;5;147m(wip3m.tools)\u001b[00m Parameter file already exists at /home/hoellinger/wip3m/results/forcediag1/example_lpt.sbmy\n",
"SPM nsteps = 20:\n",
"[02:24:14|\u001b[1;36mINFO \u001b[00m]|\u001b[38;5;147m(wip3m.tools)\u001b[00m Time-stepping distribution file: /home/hoellinger/wip3m/results/forcediag1/nsteps20_ts_spm.h5\n",
"[02:24:14|\u001b[1;36mINFO \u001b[00m]|\u001b[38;5;147m(wip3m.tools)\u001b[00m Time-stepping distribution file already exists: /home/hoellinger/wip3m/results/forcediag1/nsteps20_ts_spm.h5\n",
"[02:24:14|\u001b[38;5;113mSTATUS \u001b[00m]|Read timestepping configuration in '/home/hoellinger/wip3m/results/forcediag1/nsteps20_ts_spm.h5'...\n",
"[02:24:14|\u001b[38;5;113mSTATUS \u001b[00m]|Read timestepping configuration in '/home/hoellinger/wip3m/results/forcediag1/nsteps20_ts_spm.h5' done.\n",
"[02:24:15|\u001b[1;36mINFO \u001b[00m]|\u001b[38;5;147m(wip3m.tools)\u001b[00m Generating parameter file...\n",
"[02:24:15|\u001b[1;36mINFO \u001b[00m]|\u001b[38;5;147m(wip3m.tools)\u001b[00m Parameter file already exists at /home/hoellinger/wip3m/results/forcediag1/nsteps20_example_spm.sbmy\n",
"P3M nsteps = 20:\n",
"[02:24:15|\u001b[1;36mINFO \u001b[00m]|\u001b[38;5;147m(wip3m.tools)\u001b[00m Time-stepping distribution file: /home/hoellinger/wip3m/results/forcediag1/nsteps20_ts_p3m.h5\n",
"[02:24:15|\u001b[1;36mINFO \u001b[00m]|\u001b[38;5;147m(wip3m.tools)\u001b[00m Time-stepping distribution file already exists: /home/hoellinger/wip3m/results/forcediag1/nsteps20_ts_p3m.h5\n",
"[02:24:15|\u001b[38;5;113mSTATUS \u001b[00m]|Read timestepping configuration in '/home/hoellinger/wip3m/results/forcediag1/nsteps20_ts_p3m.h5'...\n",
"[02:24:15|\u001b[38;5;113mSTATUS \u001b[00m]|Read timestepping configuration in '/home/hoellinger/wip3m/results/forcediag1/nsteps20_ts_p3m.h5' done.\n",
"[02:24:15|\u001b[1;36mINFO \u001b[00m]|\u001b[38;5;147m(wip3m.tools)\u001b[00m Generating parameter file...\n",
"[02:24:15|\u001b[1;36mINFO \u001b[00m]|\u001b[38;5;147m(wip3m.tools)\u001b[00m Parameter file already exists at /home/hoellinger/wip3m/results/forcediag1/nsteps20_example_p3m.sbmy\n"
]
},
{
"data": {
"image/png": "iVBORw0KGgoAAAANSUhEUgAAAb0AAACMCAYAAADof3f4AAAAOnRFWHRTb2Z0d2FyZQBNYXRwbG90bGliIHZlcnNpb24zLjEwLjMsIGh0dHBzOi8vbWF0cGxvdGxpYi5vcmcvZiW1igAAAAlwSFlzAAAPYQAAD2EBqD+naQAAOu5JREFUeJztnXdYFMf/x18cTXqVIkUUBXslGltiiyUmMUaNmthiSzB+rbH9EjV27GBJrMRujJqoaNQY0RhLNIm9N2wgioJ0EO729wdyctJuDw7PMK/nuQd2b+a975md28/u7OyskSRJEgKBQCAQlAIUr9qAQCAQCAQlhQh6AoFAICg1iKAnEAgEglKDCHoCgUAgKDWIoCcQCASCUoMIegKBQCAoNYigJxAIBIJSgwh6AoFAICg1mLxqA0VBpVIRFRWFjY0NRkZGr9qOQCAQCF4RkiSRmJhIuXLlUCjyv557rYNeVFQUXl5er9qGQCAQCAyEe/fu4enpme/3r3XQs7GxAbIKaWtrq7OOfxV/oh9E41DWgRW/r8gzzZ0VxqiSjVFYKSk/UKnztopDR3jRr47wol8d4UW/OobkRbvtmKBKVmBpa0rPKY111klISMDLy0sdF/LjtQ562V2atra2RQp62ZfCCmMFTg5OeaZ5ZJ6JKkOBwlyFk4Pu1VYcOsKLfnWEF/3qCC/61TEkL9oQY65EmWGEhblpkY7j2RR2q0sMZBEIBAJBqUEEPYFAIBCUGkTQEwgEAkGpQQQ9gUAgEJQaXuuBLPrklzW/sHnZZmJjYvGt6ssH1b7E26ZavunPnjjL5qWbuXb+Gk8ePWHqiqk0bdtU1jY3LN7An3v/5O7Nu5iXMad6/eoMGj8Ib19vrTV2rNvBznU7ib4fDYCPnw+9h/WmYYuGsry8zMYlG1kxawWd+3VmyLdDtM63ev5q1gSv0Vjn5evF2oNrZW0/JjqG5TOXc/LgSdJS0/Dw8WDs3LH41/bXWqN74+48vP8w1/qOvTsyfNpwrTSUSiVrFqxh/y/7iX0Ui7OrM227tqXX0F6ynxVNSUohdG4oR/YdIe5xHJVrVGbIt0OoUrtKvnkKa2eSJPHD/B/YvXE3SQlJ1AiowYgZIwA3WTqH9xwmbH0Y185fI+FpAiv2rKBS9Uqy/GRmZLJqzipOHDzBg7sPsLKxol7TerQo2w9bXLT2snr+asLDwomJisHE1AS/mn70H9MfI/xklSkn88fPJ2xDGF2aB9Lcv4vWGkEjg9i3dZ+G1htvv8FnATNke7lz/Q7LZy7n7ImzKDOVlK9cnl4NJ2KvcNNap4V3izzL92HDQbRp2lUrjdTkVJYHLefIviMkxCXg7uXOR599RGXezVNbW2+xMbEsn7mcfw7/Q1JCErUa1mLolKF4Vsj/cYKSQFzp5UH4znC+n/o9fYb3Yfnu5fhW9WXRtvEkpsblmyctJQ3far4MmzZM5+2ePXGWD/t8yJLtS5izYQ6ZmZmM6TmG1JRUrTXKupVl4LiBLNu9jKW7llK3cV2+GfANEVcjdPZ15ewVwjaGUbFqRZ3y+/j5sO2fberPom2LZOVPfJrI/z76HyYmJgStDWL1gdUETgjE2s5als7SsKUaPuZumAtA8w7NtdbY9P0mdqzbwdApQ1kTvoZB4wfx49If+fmHn2V5AZgzZg7//PkP44PHE7o/lIBmAXz1yVfERMfkm6ewdvbj91leRswcwXc7v6OMZRnG9BxDRuYzWTppKWnUeKMGg8YPKrAMBemkpaZx/cJ1eg3txbJflzFl+RTu3brH0u0TZXnxrOjJsCnDWPXbKhZuW4iblxtjeo4hMeWpLJ1s/tz7J5dOX8LZ1VlWebJp0LyBRjuasGiCbJ3I25EM7TwUL18vFmxewMp9K+k1tBemJqaydHL62PbPNsbMHYMRRtSp2ExrjSVTlnDy0Em+DvmaNeFr6Ny/MyETQzh341i+dVCYriRJTBg4gQd3HzBt1TSW71mOq4crX33ylazjmT4QV3p5sGXlFjr06ED7j9sDMHLmSI6E/cXxK3tpV7ZbnnkatmhY5Kup2etmayyPmzeOTnU7ce38NWo3rK2VRuN3NJ9zGTBmADvX7eTS6UtU8K8g21NqcirTh07nq6CvWLdonez8AMYmxji6OOqUF7ICjYu7C2PnjVWvc/d2l61j72Svsbzxu42UK1+O2m9qV7cAF/+5SJM2TWjUqhEAbl5uHNh5gCtnr8jykp6WzuE9h5m2cpp63/Yd2Zdjvx9j57qd9B/dP898BbUzSZLYumorvf7Xi6Ztss64xy8Yz0f1P+LsjaPU82yllQ5Am85tAIi+F11gOQrSsba1Zu7GuRrrhk0dRuD7gcQmPsTZuqxWXlp/2FpjefCEwfz6469ExtzCz+lFu9LmNxgTHcPCiQuZvW424z8bL6s82ZiamebRnjNl6ayas4qGLRryxddfqNd5+Hhw+XImqiTtdV72cfS3o/h518bZthyg0krj4r8XadulLXUa1QHg/U/fJ2xDGLejr1LDLf/eqoJ070fc59KpS4TuD1Ufd0bMGEHn+p0J3xFOhx4d8tXVN+JK7yUynmVw7fw16jetr16nUCio4l2PiIeXStRLcmIyALb2uj27olQqCd8ZTlpqGtXrVddJI/ibYN5s+Sb1m9UvPHE+REZE0iWgC580+YRpQ6fxMDJ3F2NBHNt/DP9a/nz7xbd0qtuJge0HsmvjLp39QNZ+3v/Lftp3ay+rW7J6QHVOHT3FvVv3ALhx6QYX/r5Ag+YNZG1fmalEpVRhZm6msd68jDnn/z4vSyubB3cfEBsTq9F2rW2tqVqnKreiSrbt5kdyQjJGGGFhLu8qPZuMZxns2rgLK1srPMv6ysqrUqmYOXwm3T7vptMJYDZn/jpDp7qd6N28Nwv+bwHxcfGyffwV/heeFT0Z3XM0nep2IvCDQI7sO6KzJ8jqTvwr/C8a12gvK1/1+tU5tv8YMdExSJLE6WOnuR9xn6o+uv/mM55lAGi0b4VCgamZqc7tu7gQV3ovER8bj0qpwsHZQWO9jaUD0Y/vlZgPlUrF4m8XUyOghuwf6K0rt/jywy95lv4MCysLpiyfgo+fj2wP4TvDuX7hOkvDlsrOm03VulUZO28sXr5ePHn0hLXBaxnWZRih+0OxtLbUSiPqXhQ71u+g64CufDrkU66cvcKiSYswMTWhXdd2Ovk6su8ISQlJtOsiL/8ngz8hJTGFPi36oDBWoFKq6D+6P+90ekeWjqW1JdXrV2fdwnWUr1Qeh7IOhO8I59KpS3j4eMjSyiY2JhYgV9t1cHYg4Xr+XfMlxbO0ZyybuYyAKi2wMLMi+0pEG47/fpwpQ6aQnpqOk4sTczfMRTpkp3FVVBibvtuEsbExnft1lm/+OQ2aN6BZu2a4e7sTdSeKlbNWMq73OIa0DEbba4inj5+SmpzKpu820W90Pz4f/zknD51k4qCJDOs6h0oOdXXytm/rPiytLKlTuSmkaZ9v6JShzBs3j48bfIyxiTEKhYJRQaPwjqwlq35z4u3rjauHKytmrWDUzFGUsSzD1pVbiXkQw5NHT3QTLSZE0DNQQr4JIeJahOz7XwBeFb1YuXclSQlJHP71MEEjgwj+KVhW4HsU9YjF3y5mzoY5mJUxKzxDPuTs/vCt6ku1OtXo3rg7B3cdpEN37bo4JJWEfy1/Bo4dCEDlGpWJuBpB2IYwnYPer5t/pWHzhji75b6vUxCHdh3i9+2/882ib/Dx8+HGxRssmbwEJ1cn2V7GLxjP7NGz6dqgKwpjBX41/GjZsSXXzl+TpfM6kJmRyeTBkwHo3nooZMjLX6dxHVbuXUl8bDy7Nu1i8uDJjHhvIVbkPYPSy1w9d5VtP2xj+e7lRZqcvuUHLdX/V6xSkYpVKvJps0+5Vvksfk4BWmmoVFnBvnGbxnQdkDXYpFL1Slz89yJHzu6iUnPdgt6en/bQulNrTE3MZJxOwC+rf+Hy6ctMXzUdV09Xzp04R8iEEAa2d9C6TC9jYmrC5GWTmTNmDh/U+gCFsYL6TevTsEVDJEnSSbO4EEHvJewc7VAYK4h7rHlmnJgSh62F7vel5BAyIYTjB44TsiWEsu5lZec3NTNVXy341/LnytkrbAvdxqigUVprXDt/jbjHcQx698VABpVSxbkT5/hlzS/8duM3jI2NZXuztrPGs4InUbejtM7j5OJE+crlNdaVr1yeP/f8KXv7ANH3ozl15BSTl0+WnXfp9KX0GNxDffCrWKUiDyMfsvG7jbKDnoePByFbQkhNSSUlMQUnVycmD56s0/1KAMeyWe0z7nEcTq4vgkHc4zgcrXQbhFQcZAe86Mho5v84n6i1VqhkBj0LSws8fDzw8PGgWr1q9HyrJ0fP76VN9U+1yn/+5HmePn5Kt0Yv7smrlCq2RS4j/J+fmfb5enmGnlOufDnsHO2IeRqFn3bxFztHO4xNjPGp7KOx3ruSNycvndPJx7kT57h38x4Tl0wkY7/2+dLT0lk5eyVTlk9R36f2rerLjUs3+P2vLfi11S3oQdaxJ/vkOzMjE3snewI/CMS/lvYjrvWBCHovYWpmil9NP04dPaUefqtSqbh69zRvVftQr9uWJImFExdyZO8RFvy0QOeDX1662X3s2lKvST1C94dqrJs1ahbevt70GNxDp4AHWQNjou5E8c5H2ncHVg+ozr2bml3L92/dx9XTVScPe3/ai72TPY1aNpKdNz01PddrSxQKBZJK97NXC0sLLCwtSHyayN+H/+bz8Z/rpOPu7Y5jWUdOHT2lfrwgOTGZy2cu06v1ezr7KwrZAe9+xH0WbF6AnYMdUS8N+tAFSSWRqdS+Tb/T+Z1c96XH9BxDPe9WNKwo7x5YTmIexJAQl4CdlfYnxKZmplSpXSV3m464j6Otbm36182/4lfTj0rVKnF5v/b1m5mRSWZGZp5tWiXJuV7MH2vbrPu39yPuc+3cNfp91a9YdHVFBL086DqgK0GjgvCr6UfVOlXZumor6RlpvOnfNt88qcmpRN6OVC8/uPeAGxdvYGNvg6uHdg05+JtgDuw4wLSV07C0siT2UdY9GitbK8zLmGulsSJoBQ1aNMC1nCspySkc2H6AM8fP5BoZWhiW1pa57iWWsSyDrYOtrHuM30/7nkatG+Hm4cbjh49ZPX81CmMFrTq2Kjzzc7oO6MqQTkNYv3g9Ld5rweUzl9m1cRcjg0ZqrZGNSqVi75a9tO3SFmMT+YG7UetGrF+0HpdyLlTwq8D1i9fZsnKLeqSvHE7+cRKkrO7oyNuRLJ2xFG9f7wK1CmtnXfp3Yd3CdXj4eODu7U7o3FCcXZypXamJxn2ewnQSnibwKPIRjx8+BuDuzbsAxCfbYoOzVjpOLk5M+mIS1y9cZ8YPM1ApVcQ+iiU+ORMLpR1mGBeqYetgy/pF62nyThMcXRyJj41n+9rtxDyMoV6Lt2TVjZ2DnUZ6Y1NjbK0ccbX3Ivv+YoFe7G1ZE7yGt9q/hWNZRyLvRLJsxjI8fDyo6hMgq367fd6NKV9OoVbDWtRtXJeTh05y7PdjDO8yT1aZIOvE5o/dfxD4TSB5UZhG7Tdrs3T6UszLmOPq4crZE2f5bdtvfNT0izz1tNU9tOsQ9k72uJRz4dbVWyz+djFN2jbhjbfeKFBX34iglwctP2hJfGw8q+evzno4vZovQzrPwNbSkfxuvl89d5UR3Uaol7+b8h0Abbu0Zdz8cVptd+e6nQCM+HiExvqx88Zq3XUW9ySOmSNmEvsoFisbKypWqcjsdbMJeEv3boqiEPMghmlDppHwNAE7RztqvlGTJduX5Hp8oCCq1K7C1OVTWTFrBWtD1uLu5c6Xk76UPXgE4N8j//Iw8iHtu+l2dj90ylBC54YS8k0IcY/jcHZ15v1P36f3sN6ytZITklk5ayUx0THY2Nnw1rtv0X90f0xM8/9ZFtbOugd2JzU1lXnj55GUkETNgJrMWjeLpDDN+zyF6Rzbf4xZo2apv586ZCoA7zbqxbu1+mql03dEX47tz3rWa2C7gRrlGPr+PKrY1SpUY+SMkdy7eY9JWycRHxePrb0t/rX9Wbh1IdIhH42BFsXxGyxIY8SMEdy8fJN9W/eRlJCEk6sTAc0C6PdVPx5ulFe/zdo1Y8SMEWxcspFFkxbh5evF5GWTcbpcQ3aZwneGI0kSLTu+uN+obZnGzR/HxMUTWTFrBdOHTifhaQKunq70H9OfGsnvISXrVlfj5o/jyaMnfDf1u6zudhcn2nRuQ6+hvfIXLCGMpFd9V7EIJCQkYGdnR3x8fJFeSeHh6UFUZBRObk5sPbk1zzSXQzJRJSlQWKuoOkz3c4Xi0BFe9KsjvOhXR3jRr44hedGGKyFKlElGWNqZ8tmsZoVnyAdt44F4Tk8gEAgEpQYR9AQCgUBQapAd9Jo3b87w4cPz/K5v3758+OGHWuncvn0bIyMjzpw5I9dC8aJSwvN5CRXKzKzlPNIono+xVqgy8k6j5baKrCO86FdHeNGvjvCiXx1D8vJcx/7BeVxuHsb+wfncOjm2g/KZ7tuRQbFe6YWEhLB69erilNQvl3ZCcA2MUrJmCDBLS+DNnwbifPu4Oonz7eO8+dNAzNMSATBPS8yVRhuKQ0d40a+O8KJfHeFFvzqG5CWnTp1fv6HaoXnU+fUbDZ3s783SEgCyjsPBNbKOy3qkWIOenZ0d9vb2xSmpPy7thJ96Q4LmQ9LmyU+ofiAI59vHcb59nOoHgjBPfpJvGm0oDh3hRb86wot+dYQX/eoYkhdtdCqeXJ3n9yQ8yDou6zHwFTno7d69Gzs7OzZs2JCre1OlUjF79mwqVaqEubk53t7eTJ8+PU8dpVJJv379qFKlCnfv3i2qrYJRKWHvWCBr4KqFCViaZv3NnqCo0rHlVDq2HMhaZ0I6JkZpmJD+Is3xFSjSk1FkpOX/SU+m0vEi6hSHxn/Ry3+xTIbk5b9YJkPyUkrKlJPsZa/z23NtJ+t4/Pxhgr3j9NbVKfuRhebNm1OnTh2Cg4PZuHEjX3zxBRs3buS9996jb9++PH36lO3btwMwduxYVqxYwYIFC2jatCkPHjzgypUrDBgwgNu3b1OhQgVOnz5N1apV6dGjB7dv32bfvn2ULZv31Fvp6emkp6erlxMSEvDy8pL/yELEn7Dm1cxQIRAIBILcrH+0mJ4uOV5Q3WcXVND+EQa9P7KwZMkSBg8eTFhYGO+9lzuAJCYmEhISwuzZs+nTpw++vr40bdqUAQMGaKRLSkqiQ4cOxMTEcPDgwXwDHsDMmTOxs7NTf7y8vHQzn1Twq22WZb7HmIyB/KPyKzBdTlIkc3zSNuKTtpEUSbvZU/ShYWg6wot+dYQX/eoYkpfi0nmVXjIlBTMzuvPZs9GkSoVMZF/IcVpXdHricOvWrTx69IijR4/yxht5Tylz+fJl0tPTadWq4OmmevTogaenJ+Hh4VhYWBSYdvz48Ywc+WLqqewrPdlYa04L1jQ0iYdJEq7WRhzpZ83vynr8LVWhseISAWjOeL/98SQ+dH4xUXFKt7Uovd4k5ZkSZp8GIHHYGZRmWVMsGd/7C8vNuWfryEsn0fWNImsUl5f8dAzJi1wdUb+ifg3JS2krE4CJkYqtyrd5gh03JA9qGkWw7fF0UlV2mClSNBO/dJwuLnQKenXr1uXUqVOEhoYSEBCQ56s6Cgtg2bz77rusX7+e48eP07Jl3tPoZGNubo65ue5nJmrKNwbbclk3TZE40u/FCy0lCa5KWYHUzzoNUo1Q9zNDjp1vBLblsPR/DxTGGD97McmrjbULlmbPq9b/PY1tFaiTKRVdo7i85KdjSF5E/Yr6LU31+5qXKRs/xX2Oq+y4KnlRkwg6O3/9Uoqs7VC+ca68xYFO3Zu+vr4cPHiQHTt28L///S/PNJUrV8bCwoIDBw4UqBUYGEhQUBAffPABf/zxhy525KMwhnbZ8wpqBuyHOJKAFcZGEhXfHZ6PwPM87YKytJ7jaGWGo9VLl+wa2ypcpzg09KpjSF500DEkL3nqGJIXHXQMyUueOobkpZSWyd/oPgBXVV68fPzNbzvFSZEGsly9epXmzZvTrVs3goODcw1kmTx5MiEhIQQHB9OkSRNiYmK4ePEi/fv31xjIkq03YcIE9uzZQ9OmTbXyUuS5Ny/tzBrFmeOxhXQbb87Vm06UQ3061vHISrNnNCRGv8hn65G1U6p9IG9bRdURXvSrI7zoV0d40a+OIXkpQOfCG0FEOTagZspJ3P/UPP7qtJ3naB0PJJm8/fbb0rBhw9TLly5dklxcXKSRI0dKffr0kTp27Kj+TqlUStOmTZPKly8vmZqaSt7e3tKMGTMkSZKkiIgICZBOnz6tTj9v3jzJxsZGOnr0qFZe4uPjJUCKj4+XW4wXKDMl6dZhSTq3JeuvMjN3mtR4SZpkm/W5+lveabShOHSEF/3qCC/61RFe9KtjSF600dHm+Ksl2sYD2ff0Dh06pLFctWpVHj7Me5SNQqHg66+/5uuvX+6zBR8fn1yvjR85cqTGQJUSQWFc+LDYnJfZPo11v+wuDh3hRb86wot+dYQX/eoYkhdtdLQ5/hYz4n16L7Hyz1vYlDGhTTU3HLL7qo2MoXKbF//nQVqGkj6hJwFY068BZUzzSFeITnFolKiOIXnRQseQvGilY0hetNAxJC9a6RiSl1JWpj+vx3D23lPa1XCnkot17nx6RAS9HKhUEvN+u0ZqhpIAH8cXQc+0DHy6peC8ksSJiFj1/3lSiE5xaJSojiF50ULHkLxopWNIXrTQMSQvWukYkpfi0jEkLwXorPwzgj+uxeBgZVbiQU+8WigH9+NSSc1QYmaioLyj5au2IxAIBP9J/N1sALgWnVji2xZBLwdXH2btgEplrTExFlUjEAgE+sDPNSvoZR9zSxJxZM/Btec7IPssRM2zZJjunvV5lqz7BopDR3jRr47wol8d4UW/OobkpQAd/+ygF52Ya0CjvhH39HJw9fmldvZZiAYZKbnX6UJx6Agv+tURXvSrI7zoV8eQvOSjU8nFGiMjiEvJ4HHSM8raFMNMW1oirvRykH2l5+dasjdWBQKBoDRhYWasHjdxrYS7OMWV3nMylCpuxiQB+VzpaYFFXkN2X4GGoekIL/rVEV70q2NIXopLxxC8+LnacPtJCleiE2lSyblY/GiDCHrPMVEYcXRcS65FJ+Fhr91k2TmxNDPh8tR2RfJQHBqGpiO86FdHeNGvjiF5KS4dQ/Eyqo0/X7X1x8fJqshe5CCC3nOMjIxwsSmDi02ZV21FIBAI/vPkGjBYQoh7egKBQCAoNYgrvecsOXiDpPRMOtfzzD1DgJECyjd98X8epGUoCVz/LwDf96yfz5Q8BesUh0aJ6hiSFy10DMmLVjqG5EULHUPyopWOIXkppWX64WgEF6MS+KqNP252JdPLJoLec7b9e59bj5Np4uucO+iZWsBnuwvMr5IkDl6NUf+fJ4XoFIdGieoYkhctdAzJi1Y6huRFCx1D8qKVjiF5KS4dQ/Kihc6PJ+9x9WEiHWq6l1jQE92bZJ2x3H6S9eCkn5t4XEEgEAhKAj+3kp+ZpViCXvPmzRk+fHi+39++fRsjIyPOnDmjXnf06FFq1qyJqakpH374YXHY0AmlSuLnU5GoJLA2N8HR0qzwTPnoZHPiVqzGcklqGJqO8KJfHeFFvzqG5KW4dAzJS+XnvWoHLj/k+M0nOnuRg+w3p+dFzrep54VSqSQmJgZnZ2dMTLJ6VBs2bIifnx8zZ87E2tqa4OBgtm/frhEYC6Oob07fe+EBk8Mu8SA+Tb3O3a4Mk96vRrsa7i8SPkuG4JpZ/w8/D2ZWuXQm7bzIw4R0nXWKQ6PEdQzJSyE6huRFax1D8lKIjiF50VrHkLyUwjLtvfCA8T+fJy4lo2ANLdE2Hui9e/PZs2cYGxvj5uamDngAN2/epGXLlnh6emJvb69vG7nYe+EBgetPaQQ8gOj4NALXn2LvhQeaGVKeZH3y0cm58+XqFIfGK9MxJC/56BiSF9k6huQlHx1D8iJbx5C8lKIyZWvkDHgFahQjsoNecnIyvXv3xtraGnd3d+bNm6fxvY+PD1OnTqV3797Y2toyaNAgje7N7P+fPHlCv379MDIyYvXq1UyePJmzZ89iZGSkXqcvlCqJyWGXyOsSV3r+mbTzIolpGaQ8yyTlmZIUyTzr80z5fF0miWkZTNp5sUg6xaHx6nQMyYuoX1G//736/S+WqTANgMlhl/TW1Sm7e3Pw4MHs3r2b0NBQXFxc+L//+z/++OMP+vXrR3BwMD4+PsTFxTFx4kT1vTpjY2MqVKjA6dOnqVmzJjExMfj7+zNlyhS6deuGnZ0dEyZMYO/evfz+++8A2NnZYWGhOTNKeno66ekvzi4SEhLw8vKS3b15/OYTeqz4S06xBQKBQKBH3kox4bBlpnp508A3aeTrpHV+bbs3ZT2ykJSUxKpVq1i/fj2tWrUCYM2aNXh6emqka9myJaNGjVIv3759W/1/dlenkZERdnZ2uLm5AWBtbY2JiYl6OS9mzpzJ5MmT5VjOk0eJaYUnEggEAkGJUTnDmMO8CHr6Ok7LCno3b97k2bNnNGzYUL3O0dERf39/jXQBAQHF4+4lxo8fz8iRI9XL2Vd6cnl5qrHIZQNRJsdibOWIx+cr1OuHtIdK7kb56tx4ILF4z4vl/vHmWEtGJBlJrLJ7cUVakE5xaBiajvBSespkSF5EmV6PMuWnkWak2emorykh9fJwupWVfiYQNTc3x9y86O9dalDBEXe7MkTHp2X1Q2c+Q8pIR8p8pk7jaG1EPR8LFIr8G0A9HwkHq1TikrN2lilGmGGEaY40hekUh4ah6QgvpadMhuRFlOn1KFN+Gtkh0whwsytDgwqO+fooCrIGsvj6+mJqasqJEyfU6+Li4rh27VqRjZiZmaFUKousow3GCiMmvV8NyKrgvPikqVmBOx9AoTDi02YFP9dXmE5xaBiajvCiXx3hRb86huSluHReFy/ZuSa9Xw3jQrzoiqygZ21tTf/+/Rk9ejTh4eFcuHCBvn37olAU/ckHHx8fIiIiOHPmDI8fP9YYsKIP2tVw5/ue9XJNfeNobcSQduYE+Gp3ERzga8KQduY4WGnuIDk6xaFhaDrCi351hBf96hiSl+LSeR28uNmV4fue9XR6Tk9bZI/eTEpKIjAwkJ9//hkbGxtGjRrF7t271Q+n+/j4MHz4cI0ZWm7fvq0evVmnTh0A7O3tCQ4Opm/fvkDWyMxPP/2UAwcO8PTpU3744Qf1d/lR1IfTIevxBbdy5Xj8MBq7sk78/PeWQs928kKlkrgYrESRqkBloaL6cGPZOsWhYWg6wot+dYQX/eoYkpfi0jE0L5dCVBilGGFibcKA2c10vsLTy+hNyLraW7duHevWrVOvGz16tPr/nCM1s/Hx8eHl2Pr06VONZXNzc7Zu3SrXTpExVhhhZpJ1pWpijE47H7LymRiDqgg6xaFhaDrCi351hBf96hiSl+LSMTgvClACZsZGeuvSzIl4y4KW/LLmFzYv20xsTCy+VX0ZOmUoVetU1Tr/2RNn2bx0M9fOX+PJoydMXTGVpm2byvKwYfEG/tz7J3dv3sW8jDnV61dn0PhBePt6y9LZsW4HO9ftJPp+NAA+fj70Htabhi0aFpIzfzYu2ciKWSvo3K8zQ74donW+1fNXsyZ4jcY6L18v1h5cK9tDTHQMy2cu5+TBk6SlpuHh48HYuWPxr+1feObndG/cnYf3H+Za37F3R4ZPG66VhlKpZM2CNez/ZT+xj2JxdnWmbde29BraCyMjeT/qlKQUQueGcmTfEeIex1G5RmWGfDuEKrWr5JunsLYmSRI/zP+B3Rt3k5SQRI2AGoyYMQJwk6VzeM9hwtaHce38NRKeJrBizwrAR2uNzIxMVs1ZxYmDJ3hw9wFWNlbUa1qPQeMGAfayvKyev5rwsHBiomIwMTXBr6Yf/cf0xwg/WTo5mT9+PmEbwujSPJDm/l201ggaGcS+rfs0tN54+w0+C5gh28ud63dYPnM5Z0+cRZmppHzl8vRqOBF7hZtWGi28W+RZtk5vDaRV1e5ae0lNTmV50HKO7DtCQlwC7l7ufPTZR1TmXVllio2JZfnM5fxz+B+SEpKo1bAW7/l+iZOp/FH4uiLesqAF4TvD+X7q9/QZ3oflu5fjW9WXMT3HEPc4TmuNtJQ0fKv5MmzaMJ19nD1xlg/7fMiS7UuYs2EOmZmZjOk5htSUVFk6Zd3KMnDcQJbtXsbSXUup27gu3wz4hoirETr5unL2CmEbw6hYtaJO+X38fNj2zzb1Z9G2RbI1Ep8m8r+P/oeJiQlBa4NYfWA1gRMCsbaT99aMpWFLNbzM3TAXgOYdmmutsen7TexYt4OhU4ayJnwNg8YP4selP/LzDz/L8gIwZ8wc/vnzH8YHjyd0fygBzQL46pOviImOyTdPYW3tx++zvIyYOYLvdn5HGcsyjOk5howco5e10UlLSaPGGzUYNH6QTl7SUtO4fuE6vYb2Ytmvy5iyfAr3bt3j6/5fyy6TZ0VPhk0ZxqrfVrFw20LcvNwY03MMiSlPZelk8+feP7l0+hLOrs6yvQA0aN5Aox1NWDRBtk7k7UiGdh6Kl68XCzYvYOW+lfQa2gtTE1OtNXJ62PbPNsbMHYORkRF1KzeT5WXJlCWcPHSSr0O+Zk34Gjr370zIxBDO3TimtY4kSUwYOIEHdx8wbdU0lu9ZjquHKyFbxpCeIe8YVhTElZ4WbFm5hQ49OtD+4/YAjJw5khPhJ9izeQ+ffPmJVhoNWzQs0pUUwOx1szWWx80bR6e6nbh2/hq1G9bWWqfxO401lgeMGcDOdTu5dPoSFfwryPKUmpzK9KHT+SroK9YtWld4hjwwNjHG0aVow5M3fb8JF3cXxs4bq17n7i3/Zri9k73G8sbvNlKufDlqv6l9/V785yJN2jShUatGALh5uXFg5wGunL0iy0t6WjqH9xxm2spp6v3bd2Rfjv1+jJ3rdtJ/dP888xXU1iRJYuuqrfT6Xy+atsk6Ax+/YDwf1f+IszeOUs+zlVY6AG06twEg+l50vmkK0rC2tWbuxrka64ZNHUbg+4HEvvlIfTWjjZfWH7bWWB48YTC//vgrkTG38HN60ba0+R3GRMewcOJCZq+bzfjPxssqUzamZqZ5tOlMjaXCdFbNWUXDFg354usv1Os8fDy4fDkTVZJ2Gi97OPrbUeo0qoOzvbtaQxudi/9epG2XttRpVAeA9z99n7ANYdyOvkoNtxdXcgXp3I+4z6VTlwjdH6o+zoyYMYJDv3Tm3xvhtHb+MN/tFyfiSq8QMp5lcO38Neo3ra9ep1AoqNe0HhdPXXyFziA5MesdgLb2ug3igayuuPCd4aSlplG9XnXZ+YO/CebNlm9Sv1n9whPnQ2REJF0CuvBJk0+YNnQaDyNzdy8WxrH9x/Cv5c+3X3xLp7qdGNh+ILs27tLZE2Tt+/2/7Kd9t/ayuiWrB1Tn1NFT3Lt1D4Abl25w4e8LNGjeQNb2lZlKVEoVZuaaw7vNy5hz/u/zsrSyeXD3AbExsRrt2drWmqp1qnIr6pJOmsVJckIyRkZGWJjr/qxvxrMMdm3chZWtFZ5lfWXlValUzBw+k26fd5N9ApiTM3+doVPdTvRu3psF/7eA+Lh42T7+Cv8Lz4qejO45mk51OxH4QSBH9h3R2VNsTCx/hf/Fu93fLTzxS1SvX51j+48REx2DJEmcPnaa+xH3qeqj/e8+41nW5NI527NCocDU2JSb0Rdke9IVcaVXCPGx8aiUKhycHTTWOzg7cPfm3VfkKutHsfjbxdQIqKHTj/PWlVt8+eGXPEt/hoWVBVOWT8HHz0eWRvjOcK5fuM7SsKWyt59N1bpVGTtvLF6+Xjx59IS1wWsZ1mUYoftDsbS21Fon6l4UO9bvoOuArnw65FOunL3CokmLMDE1oV3Xdjp5O7LvCEkJSbTrIi//J4M/ISUxhT4t+qAwVqBSqug/uj/vdHpHlo6ltSXV61dn3cJ1lK9UHoeyDoTvCOfSqUt4+HjI0somNiYWIM/2nHBd++56ffAs7RnLZi6jZceWWJhbocooPE9Ojv9+nClDppCemo6TixNzN8xFOmSncUVTGJu+24SxsTGd+3WWt/EcNGjegGbtmuHu7U7UnShWzlrJuN7jGNIyGG2vM54+fkpqciqbvttEv9H9+Hz855w8dJKJgyYyrOscKjnUle1r39Z9WFpZ8la7t7i5TF7eoVOGMm/cPD5u8DHGJsYoFApGBY3CO7KW1vXr7euNq4crK2atYNTMUZSxLMPWlVuJS4ohPiVWdnl0RQS915SQb0KIuBah0/0vAK+KXqzcu5KkhCQO/3qYoJFBBP8UrHXgexT1iMXfLmbOhjmYldHtxbuARleIb1VfqtWpRvfG3Tm46yAdunfQWkdSSfjX8mfg2IEAVK5RmYirEYRtCNM56P26+VcaNm+Is1vu+zoFcWjXIX7f/jvfLPoGHz8fbly8wZLJS3BydZLtZfyC8cwePZuuDbqiMFbgV8OPlh1bcu180SeEMCQyMzKZPHgyACOmj+BuqHyNOo3rsHLvSuJj49m1aReTB09mxHsLsUK7SYuvnrvKth+2sXz3ctkDjnLS8oOW6v8rVqlIxSoV+bTZp1yrfBY/J+2maFSpVAA0btOYrgO6AlCpeiUu/nuRI2d3Uam5/KC356c9tO7U+vnvNbPQ9Dn5ZfUvXD59memrpuPq6cq5E+cImRDCwPYOWpfJxNSEycsmM2fMHD6o9QEKYwX1m9aneoUGSJn6f3ms2keJbek1xc7RDoWxIteglbjHcTiW1c80OYURMiGE4weOE7IlhLLuZXXSMDUzVV8t+Nfy58rZK2wL3caooFGF5Mzi2vlrxD2OY9C7LwYxqJQqzp04xy9rfuG3G79hbGws25e1nTWeFTyJuh0lK5+TixPlK5fXWFe+cnn+3POnbA8A0fejOXXkFJOXT5add+n0pfQY3EN98KtYpSIPIx+y8buNsoOeh48HIVtCSE1JJSUxBSdXJyYPnqzT/UpA3WbjHsfh5PoiGMQ9jsPRSreBSEUlO+BFR0Yz/8f5WNlYIfegDGBhaYGHjwcePh5Uq1eNnm/15Oj5vbSp/qlW+c+fPM/Tx0/p1qibep1KqWJb5DLC//mZaZ+vl+0JoFz5ctg52hHzNAo/LV8aYOdoh7GJMT6VfTTWe1fy5uSlc7I9nDtxjns37zFxyUTZedPT0lk5eyVTlk9R36f2rerLjUs3+P2vLfi11X6uZf9a/uqT7cyMTOyd7PmsQSBejn6FZy4mRNArBFMzU/xq+nHq6Cn10FuVSsWpo6fo1KdTiXqRJImFExdyZO8RFvy0QOcDX37a2X3u2lCvST1C92uejs8aNQtvX296DO6hU8CDrIExUXeieOcjeV2B1QOqc+/mPY1192/dx9XTVScfe3/ai72TPY1aNpKdNz01PdcsRQqFAqkI7wezsLTAwtKCxKeJ/H34bz4f/7lOOu7e7jiWdeTU0VNUql4JyLo3fPnMZXq1fk9nf7qSHfDuR9xnweYF2DnYFZu2pJLIVGrfpt/p/E6ue9Njeo6hnncrGlZsr7OPmAcxJMQlYGel/UmyqZkpVWpXyd2mI+7jaCu/Tf+6+Vf8avpRqVol2XkzMzLJzMjMs02rJJVsPci6jwxZ5bnz8Bod6n2mk44uiKCnBV0HdCVoVBB+Nf2oWqcqW1dtJS0ljXYfa3/WnpqcSuTtSPXyg3sPuHHxBjb2Nrh6aNeIg78J5sCOA0xbOQ1LK0tiH2X1g1vZWmFeRvuJuFcEraBBiwa4lnMlJTmFA9sPcOb4mVyjQwvC0toy173EMpZlsHWwlXWP8ftp39OodSPcPNx4/PAxq+evRmGsoFXHVoVnzkHXAV0Z0mkI6xevp8V7Lbh85jK7Nu5iZNDIwjO/hEqlYu+WvbTt0hZjE/nBu1HrRqxftB6Xci5U8KvA9YvX2bJyi3r0rxxO/nESpKzu6MjbkSydsRRvX+8CtQpra136d2HdwnV4+Hjg7u1O6NxQnF2cqV2pCaRpr5PwNIFHkY94/PAxAHdv3iXzUSY2OGNvbV+ohpOLE5O+mMT1C9eZ8cMMVEqVuk1nKi1QYK6VF1sHW9YvWk+Td5rg6OJIfGw829duJ+ZhDPVavCWrbl4OusamxthaOeJq70XWY9iFeLG3ZU3wGt5q/xaOZR2JvBPJshnL8PDxoKpPgKz67fZ5N6Z8OYVaDWtRt3FdTh46ybHfjzG8yzytNSDrpOaP3X8Q+E0g+VGYTu03a7N0+lLMy5jj6uHK2RNn+W3bb3zU9AtZOod2HcLeyR6Xci7cunqLxd8upnalxlT10s+befJCBD0taPlBS+Jj41k9f3XWw+nVfJm1bpas7s2r564yotsI9fJ3U74DoG2XtoybP04rjZ3rdgIw4uMRGuvHzhsrq9ss7kkcM0fMJPZRLFY2VlSsUpHZ62YT8FbJNbxsYh7EMG3INBKeJmDnaEfNN2qyZPuSXI8OFEaV2lWYunwqK2atYG3IWty93Ply0peyB48A/HvkXx5GPqR9N93O7odOGUro3FBCvgkh7nEczq7OvP/p+/Qe1lu2VnJCMitnrSQmOgYbOxveevct+o/uj4lp/j/dwtpa98DupKamMm/8PJISkqgZUJNZ62aRFGaGSobOsf3HmDVqlvr7qUOmAtC+fm/ed+lVqEbfEX05tj/rOa+B7QZqlGH4x3M1BmsUpDNyxkju3bzHpK2TiI+Lx9beFv/a/izcuhDpkI/GQIvi+B0WpDFixghuXr7Jvq37SEpIwsnViYBmAfT7qh8PN8qr32btmjFixgg2LtnIokmL8PL1YvKyyThdrqEukzblCd8ZjiRJtOz44l6jnDKNmz+OiYsnsmLWCqYPnU7C0wRcPV3pP6Y/NZLfQ0rWXufJoyd8N/W7rO51FyfadG5DA8UnUHKP6cmfe9OQKI65NwE8PD2IiozCyc2JrSd1nwrtckgmqiQFCmsVVYfpdj5RHBqGpiO86FdHeNGvjiF5KS4dQ/JyJUSJMskISztTPpvVrPAM+aBtPBDP6QkEAoGg1CCCnkAgEAhKDSLoCQQCgaDUIIKeQCAQCEoNIugJBAKBoNQggp5AIBAISg0i6AkEAoGg1PBaP5ye/YhhQkJCkXSyJ3dVKVU8iXuis05qujGqZ8Yo0pU8iVO+Mg1D0xFe9KsjvOhXx5C8FJeOIXlJSTdB9UyBUbppkY7l2XkLe/T8tX44/f79+3h5ldxr5gUCgUBg2Ny7dw9PT898v3+tg55KpSIqKgobG5sivQpEoB0JCQl4eXlx7969Is2AI9AeUeclj6jzkqW46luSJBITEylXrlyuybFz8lp3byoUigIjukA/2NraioNBCSPqvOQRdV6yFEd929kV/pYOMZBFIBAIBKUGEfQEAoFAUGoQQU+gNebm5kyaNAlzc+3f3ScoGqLOSx5R5yVLSdf3az2QRSAQCAQCOYgrPYFAIBCUGkTQEwgEAkGpQQQ9gUAgEJQaRNATCAQCQalBBL1SzpIlS/Dx8aFMmTI0bNiQkydP5pt2xYoVNGvWDAcHBxwcHGjdunWu9H379sXIyEjj065dO30X47VCTp2vXr06V32WKVNGI40kSUycOBF3d3csLCxo3bo1169f13cxXhvk1Hfz5s1z1beRkREdOnRQpxFtvGAOHz7M+++/T7ly5TAyMmL79u2F5jl06BD16tXD3NycSpUqsXr16lxp5OzHghBBrxSzefNmRo4cyaRJkzh16hS1a9embdu2PHr0KM/0hw4dokePHhw8eJDjx4/j5eVFmzZtiIyM1EjXrl07Hjx4oP5s2rSpJIrzWiC3ziFrpoqc9Xnnzh2N72fPns3ChQtZunQpJ06cwMrKirZt25KWlqbv4hg8cuv7559/1qjrCxcuYGxsTNeuXTXSiTaeP8nJydSuXZslS5ZolT4iIoIOHTrQokULzpw5w/DhwxkwYAD79u1Tp9Hld5MvkqDU0qBBA+nLL79ULyuVSqlcuXLSzJkztcqfmZkp2djYSGvWrFGv69Onj9SxY8fitvqfQW6d//DDD5KdnV2+eiqVSnJzc5PmzJmjXvf06VPJ3Nxc2rRpU7H5fl0pahtfsGCBZGNjIyUlJanXiTauPYD0yy+/FJhmzJgxUvXq1TXWdevWTWrbtq16uaj7MSfiSq+U8uzZM/79919at26tXqdQKGjdujXHjx/XSiMlJYWMjAwcHR011h86dAgXFxf8/f0JDAzkyRPdX9f0X0LXOk9KSqJ8+fJ4eXnRsWNHLl68qP4uIiKC6OhoDU07OzsaNmyo9X78r1IcbXzVqlV0794dKysrjfWijRcfx48f19hHAG3btlXvo+LYjzkRQa+U8vjxY5RKJa6urhrrXV1diY6O1kpj7NixlCtXTqMxtmvXjrVr13LgwAFmzZrFH3/8Qfv27VEqdX9n138FXerc39+f0NBQduzYwfr161GpVDRu3Jj79+8DqPMVZT/+VylqGz958iQXLlxgwIABGutFGy9eoqOj89xHCQkJpKamFsuxKiev9VsWBK+OoKAgfvzxRw4dOqQxsKJ79+7q/2vWrEmtWrXw9fXl0KFDtGrV6lVYfa1p1KgRjRo1Ui83btyYqlWrsmzZMqZOnfoKnf33WbVqFTVr1qRBgwYa60Ubf70RV3qlFGdnZ4yNjXn48KHG+ocPH+Lm5lZg3rlz5xIUFMRvv/1GrVq1CkxbsWJFnJ2duXHjRpE9v+4Upc6zMTU1pW7duur6zM5XFM3/KkWp7+TkZH788Uf69+9f6HZEGy8abm5uee4jW1tbLCwsiuV3kxMR9EopZmZm1K9fnwMHDqjXqVQqDhw4oHFl8TKzZ89m6tSp7N27l4CAgEK3c//+fZ48eYK7u3ux+H6d0bXOc6JUKjl//ry6PitUqICbm5uGZkJCAidOnNBa879KUep7y5YtpKen07Nnz0K3I9p40WjUqJHGPgLYv3+/eh8Vx+9GA9lDXwT/GX788UfJ3NxcWr16tXTp0iVp0KBBkr29vRQdHS1JkiT16tVLGjdunDp9UFCQZGZmJm3dulV68OCB+pOYmChJkiQlJiZKX331lXT8+HEpIiJC+v3336V69epJlStXltLS0l5JGQ0NuXU+efJkad++fdLNmzelf//9V+revbtUpkwZ6eLFi+o0QUFBkr29vbRjxw7p3LlzUseOHaUKFSpIqampJV4+Q0NufWfTtGlTqVu3brnWizZeOImJidLp06el06dPS4A0f/586fTp09KdO3ckSZKkcePGSb169VKnv3XrlmRpaSmNHj1aunz5srRkyRLJ2NhY2rt3rzpNYftRDiLolXIWLVokeXt7S2ZmZlKDBg2kv/76S/3d22+/LfXp00e9XL58eQnI9Zk0aZIkSZKUkpIitWnTRipbtqxkamoqlS9fXho4cKBODfO/jJw6Hz58uDqtq6ur9O6770qnTp3S0FOpVNKECRMkV1dXydzcXGrVqpV09erVkiqOwSOnviVJkq5cuSIB0m+//ZZLS7Txwjl48GCex4nseu7Tp4/09ttv58pTp04dyczMTKpYsaL0ww8/5NItaD/KQbxaSCAQCASlBnFPTyAQCASlBhH0BAKBQFBqEEFPIBAIBKUGEfQEAoFAUGoQQU8gEAgEpQYR9AQCgUBQahBBTyAQCASlBhH0BAKBQFBqEEFPIBAIBKUGEfQEAoFAUGoQQU8geI2ZNGkSNWvWxMrKCldXVwIDA8nIyHjVtgQCg0W8RFYgeE2RsiaMZ9myZXh4eHDp0iX69OlDrVq1CAwMfNX2BAKDREw4LRD8h/jkk09wcXEhODj4VVsRCAwS0b0pELym3Llzhy+//JIaNWrg4OCAtbU1P/30E56enq/amkBgsIigJxC8hsTExPDGG2/w5MkT5s+fz5EjRzh27BgKhYLatWu/ansCgcEi7ukJBK8hYWFhKJVKNm3ahJGREQCLFy8mIyODOnXqvFpzAoEBI4KeQPAa4uTkREJCAjt37qRatWqEhYUxc+ZMPDw8KFu27Ku2JxAYLGIgi0DwGqJSqRg8eDAbN27EwsKCnj17kpaWxp07d9i1a9erticQGCwi6AkEAoGg1CAGsggEAoGg1CCCnkAgEAhKDSLoCQQCgaDUIIKeQCAQCEoNIugJBAKBoNQggp5AIBAISg0i6AkEAoGg1CCCnkAgEAhKDSLoCQQCgaDUIIKeQCAQCEoNIugJBAKBoNQggp5AIBAISg3/D+ZpjhB+JrhaAAAAAElFTkSuQmCC",
"text/plain": [
""
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"image/png": "iVBORw0KGgoAAAANSUhEUgAAAb0AAACMCAYAAADof3f4AAAAOnRFWHRTb2Z0d2FyZQBNYXRwbG90bGliIHZlcnNpb24zLjEwLjMsIGh0dHBzOi8vbWF0cGxvdGxpYi5vcmcvZiW1igAAAAlwSFlzAAAPYQAAD2EBqD+naQAAOu5JREFUeJztnXdYFMf/x18cTXqVIkUUBXslGltiiyUmMUaNmthiSzB+rbH9EjV27GBJrMRujJqoaNQY0RhLNIm9N2wgioJ0EO729wdyctJuDw7PMK/nuQd2b+a975md28/u7OyskSRJEgKBQCAQlAIUr9qAQCAQCAQlhQh6AoFAICg1iKAnEAgEglKDCHoCgUAgKDWIoCcQCASCUoMIegKBQCAoNYigJxAIBIJSgwh6AoFAICg1mLxqA0VBpVIRFRWFjY0NRkZGr9qOQCAQCF4RkiSRmJhIuXLlUCjyv557rYNeVFQUXl5er9qGQCAQCAyEe/fu4enpme/3r3XQs7GxAbIKaWtrq7OOfxV/oh9E41DWgRW/r8gzzZ0VxqiSjVFYKSk/UKnztopDR3jRr47wol8d4UW/OobkRbvtmKBKVmBpa0rPKY111klISMDLy0sdF/LjtQ562V2atra2RQp62ZfCCmMFTg5OeaZ5ZJ6JKkOBwlyFk4Pu1VYcOsKLfnWEF/3qCC/61TEkL9oQY65EmWGEhblpkY7j2RR2q0sMZBEIBAJBqUEEPYFAIBCUGkTQEwgEAkGpQQQ9gUAgEJQaXuuBLPrklzW/sHnZZmJjYvGt6ssH1b7E26ZavunPnjjL5qWbuXb+Gk8ePWHqiqk0bdtU1jY3LN7An3v/5O7Nu5iXMad6/eoMGj8Ib19vrTV2rNvBznU7ib4fDYCPnw+9h/WmYYuGsry8zMYlG1kxawWd+3VmyLdDtM63ev5q1gSv0Vjn5evF2oNrZW0/JjqG5TOXc/LgSdJS0/Dw8WDs3LH41/bXWqN74+48vP8w1/qOvTsyfNpwrTSUSiVrFqxh/y/7iX0Ui7OrM227tqXX0F6ynxVNSUohdG4oR/YdIe5xHJVrVGbIt0OoUrtKvnkKa2eSJPHD/B/YvXE3SQlJ1AiowYgZIwA3WTqH9xwmbH0Y185fI+FpAiv2rKBS9Uqy/GRmZLJqzipOHDzBg7sPsLKxol7TerQo2w9bXLT2snr+asLDwomJisHE1AS/mn70H9MfI/xklSkn88fPJ2xDGF2aB9Lcv4vWGkEjg9i3dZ+G1htvv8FnATNke7lz/Q7LZy7n7ImzKDOVlK9cnl4NJ2KvcNNap4V3izzL92HDQbRp2lUrjdTkVJYHLefIviMkxCXg7uXOR599RGXezVNbW2+xMbEsn7mcfw7/Q1JCErUa1mLolKF4Vsj/cYKSQFzp5UH4znC+n/o9fYb3Yfnu5fhW9WXRtvEkpsblmyctJQ3far4MmzZM5+2ePXGWD/t8yJLtS5izYQ6ZmZmM6TmG1JRUrTXKupVl4LiBLNu9jKW7llK3cV2+GfANEVcjdPZ15ewVwjaGUbFqRZ3y+/j5sO2fberPom2LZOVPfJrI/z76HyYmJgStDWL1gdUETgjE2s5als7SsKUaPuZumAtA8w7NtdbY9P0mdqzbwdApQ1kTvoZB4wfx49If+fmHn2V5AZgzZg7//PkP44PHE7o/lIBmAXz1yVfERMfkm6ewdvbj91leRswcwXc7v6OMZRnG9BxDRuYzWTppKWnUeKMGg8YPKrAMBemkpaZx/cJ1eg3txbJflzFl+RTu3brH0u0TZXnxrOjJsCnDWPXbKhZuW4iblxtjeo4hMeWpLJ1s/tz7J5dOX8LZ1VlWebJp0LyBRjuasGiCbJ3I25EM7TwUL18vFmxewMp9K+k1tBemJqaydHL62PbPNsbMHYMRRtSp2ExrjSVTlnDy0Em+DvmaNeFr6Ny/MyETQzh341i+dVCYriRJTBg4gQd3HzBt1TSW71mOq4crX33ylazjmT4QV3p5sGXlFjr06ED7j9sDMHLmSI6E/cXxK3tpV7ZbnnkatmhY5Kup2etmayyPmzeOTnU7ce38NWo3rK2VRuN3NJ9zGTBmADvX7eTS6UtU8K8g21NqcirTh07nq6CvWLdonez8AMYmxji6OOqUF7ICjYu7C2PnjVWvc/d2l61j72Svsbzxu42UK1+O2m9qV7cAF/+5SJM2TWjUqhEAbl5uHNh5gCtnr8jykp6WzuE9h5m2cpp63/Yd2Zdjvx9j57qd9B/dP898BbUzSZLYumorvf7Xi6Ztss64xy8Yz0f1P+LsjaPU82yllQ5Am85tAIi+F11gOQrSsba1Zu7GuRrrhk0dRuD7gcQmPsTZuqxWXlp/2FpjefCEwfz6469ExtzCz+lFu9LmNxgTHcPCiQuZvW424z8bL6s82ZiamebRnjNl6ayas4qGLRryxddfqNd5+Hhw+XImqiTtdV72cfS3o/h518bZthyg0krj4r8XadulLXUa1QHg/U/fJ2xDGLejr1LDLf/eqoJ070fc59KpS4TuD1Ufd0bMGEHn+p0J3xFOhx4d8tXVN+JK7yUynmVw7fw16jetr16nUCio4l2PiIeXStRLcmIyALb2uj27olQqCd8ZTlpqGtXrVddJI/ibYN5s+Sb1m9UvPHE+REZE0iWgC580+YRpQ6fxMDJ3F2NBHNt/DP9a/nz7xbd0qtuJge0HsmvjLp39QNZ+3v/Lftp3ay+rW7J6QHVOHT3FvVv3ALhx6QYX/r5Ag+YNZG1fmalEpVRhZm6msd68jDnn/z4vSyubB3cfEBsTq9F2rW2tqVqnKreiSrbt5kdyQjJGGGFhLu8qPZuMZxns2rgLK1srPMv6ysqrUqmYOXwm3T7vptMJYDZn/jpDp7qd6N28Nwv+bwHxcfGyffwV/heeFT0Z3XM0nep2IvCDQI7sO6KzJ8jqTvwr/C8a12gvK1/1+tU5tv8YMdExSJLE6WOnuR9xn6o+uv/mM55lAGi0b4VCgamZqc7tu7gQV3ovER8bj0qpwsHZQWO9jaUD0Y/vlZgPlUrF4m8XUyOghuwf6K0rt/jywy95lv4MCysLpiyfgo+fj2wP4TvDuX7hOkvDlsrOm03VulUZO28sXr5ePHn0hLXBaxnWZRih+0OxtLbUSiPqXhQ71u+g64CufDrkU66cvcKiSYswMTWhXdd2Ovk6su8ISQlJtOsiL/8ngz8hJTGFPi36oDBWoFKq6D+6P+90ekeWjqW1JdXrV2fdwnWUr1Qeh7IOhO8I59KpS3j4eMjSyiY2JhYgV9t1cHYg4Xr+XfMlxbO0ZyybuYyAKi2wMLMi+0pEG47/fpwpQ6aQnpqOk4sTczfMRTpkp3FVVBibvtuEsbExnft1lm/+OQ2aN6BZu2a4e7sTdSeKlbNWMq73OIa0DEbba4inj5+SmpzKpu820W90Pz4f/zknD51k4qCJDOs6h0oOdXXytm/rPiytLKlTuSmkaZ9v6JShzBs3j48bfIyxiTEKhYJRQaPwjqwlq35z4u3rjauHKytmrWDUzFGUsSzD1pVbiXkQw5NHT3QTLSZE0DNQQr4JIeJahOz7XwBeFb1YuXclSQlJHP71MEEjgwj+KVhW4HsU9YjF3y5mzoY5mJUxKzxDPuTs/vCt6ku1OtXo3rg7B3cdpEN37bo4JJWEfy1/Bo4dCEDlGpWJuBpB2IYwnYPer5t/pWHzhji75b6vUxCHdh3i9+2/882ib/Dx8+HGxRssmbwEJ1cn2V7GLxjP7NGz6dqgKwpjBX41/GjZsSXXzl+TpfM6kJmRyeTBkwHo3nooZMjLX6dxHVbuXUl8bDy7Nu1i8uDJjHhvIVbkPYPSy1w9d5VtP2xj+e7lRZqcvuUHLdX/V6xSkYpVKvJps0+5Vvksfk4BWmmoVFnBvnGbxnQdkDXYpFL1Slz89yJHzu6iUnPdgt6en/bQulNrTE3MZJxOwC+rf+Hy6ctMXzUdV09Xzp04R8iEEAa2d9C6TC9jYmrC5GWTmTNmDh/U+gCFsYL6TevTsEVDJEnSSbO4EEHvJewc7VAYK4h7rHlmnJgSh62F7vel5BAyIYTjB44TsiWEsu5lZec3NTNVXy341/LnytkrbAvdxqigUVprXDt/jbjHcQx698VABpVSxbkT5/hlzS/8duM3jI2NZXuztrPGs4InUbejtM7j5OJE+crlNdaVr1yeP/f8KXv7ANH3ozl15BSTl0+WnXfp9KX0GNxDffCrWKUiDyMfsvG7jbKDnoePByFbQkhNSSUlMQUnVycmD56s0/1KAMeyWe0z7nEcTq4vgkHc4zgcrXQbhFQcZAe86Mho5v84n6i1VqhkBj0LSws8fDzw8PGgWr1q9HyrJ0fP76VN9U+1yn/+5HmePn5Kt0Yv7smrlCq2RS4j/J+fmfb5enmGnlOufDnsHO2IeRqFn3bxFztHO4xNjPGp7KOx3ruSNycvndPJx7kT57h38x4Tl0wkY7/2+dLT0lk5eyVTlk9R36f2rerLjUs3+P2vLfi11S3oQdaxJ/vkOzMjE3snewI/CMS/lvYjrvWBCHovYWpmil9NP04dPaUefqtSqbh69zRvVftQr9uWJImFExdyZO8RFvy0QOeDX1662X3s2lKvST1C94dqrJs1ahbevt70GNxDp4AHWQNjou5E8c5H2ncHVg+ozr2bml3L92/dx9XTVScPe3/ai72TPY1aNpKdNz01PddrSxQKBZJK97NXC0sLLCwtSHyayN+H/+bz8Z/rpOPu7Y5jWUdOHT2lfrwgOTGZy2cu06v1ezr7KwrZAe9+xH0WbF6AnYMdUS8N+tAFSSWRqdS+Tb/T+Z1c96XH9BxDPe9WNKwo7x5YTmIexJAQl4CdlfYnxKZmplSpXSV3m464j6Otbm36182/4lfTj0rVKnF5v/b1m5mRSWZGZp5tWiXJuV7MH2vbrPu39yPuc+3cNfp91a9YdHVFBL086DqgK0GjgvCr6UfVOlXZumor6RlpvOnfNt88qcmpRN6OVC8/uPeAGxdvYGNvg6uHdg05+JtgDuw4wLSV07C0siT2UdY9GitbK8zLmGulsSJoBQ1aNMC1nCspySkc2H6AM8fP5BoZWhiW1pa57iWWsSyDrYOtrHuM30/7nkatG+Hm4cbjh49ZPX81CmMFrTq2Kjzzc7oO6MqQTkNYv3g9Ld5rweUzl9m1cRcjg0ZqrZGNSqVi75a9tO3SFmMT+YG7UetGrF+0HpdyLlTwq8D1i9fZsnKLeqSvHE7+cRKkrO7oyNuRLJ2xFG9f7wK1CmtnXfp3Yd3CdXj4eODu7U7o3FCcXZypXamJxn2ewnQSnibwKPIRjx8+BuDuzbsAxCfbYoOzVjpOLk5M+mIS1y9cZ8YPM1ApVcQ+iiU+ORMLpR1mGBeqYetgy/pF62nyThMcXRyJj41n+9rtxDyMoV6Lt2TVjZ2DnUZ6Y1NjbK0ccbX3Ivv+YoFe7G1ZE7yGt9q/hWNZRyLvRLJsxjI8fDyo6hMgq367fd6NKV9OoVbDWtRtXJeTh05y7PdjDO8yT1aZIOvE5o/dfxD4TSB5UZhG7Tdrs3T6UszLmOPq4crZE2f5bdtvfNT0izz1tNU9tOsQ9k72uJRz4dbVWyz+djFN2jbhjbfeKFBX34iglwctP2hJfGw8q+evzno4vZovQzrPwNbSkfxuvl89d5UR3Uaol7+b8h0Abbu0Zdz8cVptd+e6nQCM+HiExvqx88Zq3XUW9ySOmSNmEvsoFisbKypWqcjsdbMJeEv3boqiEPMghmlDppHwNAE7RztqvlGTJduX5Hp8oCCq1K7C1OVTWTFrBWtD1uLu5c6Xk76UPXgE4N8j//Iw8iHtu+l2dj90ylBC54YS8k0IcY/jcHZ15v1P36f3sN6ytZITklk5ayUx0THY2Nnw1rtv0X90f0xM8/9ZFtbOugd2JzU1lXnj55GUkETNgJrMWjeLpDDN+zyF6Rzbf4xZo2apv586ZCoA7zbqxbu1+mql03dEX47tz3rWa2C7gRrlGPr+PKrY1SpUY+SMkdy7eY9JWycRHxePrb0t/rX9Wbh1IdIhH42BFsXxGyxIY8SMEdy8fJN9W/eRlJCEk6sTAc0C6PdVPx5ulFe/zdo1Y8SMEWxcspFFkxbh5evF5GWTcbpcQ3aZwneGI0kSLTu+uN+obZnGzR/HxMUTWTFrBdOHTifhaQKunq70H9OfGsnvISXrVlfj5o/jyaMnfDf1u6zudhcn2nRuQ6+hvfIXLCGMpFd9V7EIJCQkYGdnR3x8fJFeSeHh6UFUZBRObk5sPbk1zzSXQzJRJSlQWKuoOkz3c4Xi0BFe9KsjvOhXR3jRr44hedGGKyFKlElGWNqZ8tmsZoVnyAdt44F4Tk8gEAgEpQYR9AQCgUBQapAd9Jo3b87w4cPz/K5v3758+OGHWuncvn0bIyMjzpw5I9dC8aJSwvN5CRXKzKzlPNIono+xVqgy8k6j5baKrCO86FdHeNGvjvCiXx1D8vJcx/7BeVxuHsb+wfncOjm2g/KZ7tuRQbFe6YWEhLB69erilNQvl3ZCcA2MUrJmCDBLS+DNnwbifPu4Oonz7eO8+dNAzNMSATBPS8yVRhuKQ0d40a+O8KJfHeFFvzqG5CWnTp1fv6HaoXnU+fUbDZ3s783SEgCyjsPBNbKOy3qkWIOenZ0d9vb2xSmpPy7thJ96Q4LmQ9LmyU+ofiAI59vHcb59nOoHgjBPfpJvGm0oDh3hRb86wot+dYQX/eoYkhdtdCqeXJ3n9yQ8yDou6zHwFTno7d69Gzs7OzZs2JCre1OlUjF79mwqVaqEubk53t7eTJ8+PU8dpVJJv379qFKlCnfv3i2qrYJRKWHvWCBr4KqFCViaZv3NnqCo0rHlVDq2HMhaZ0I6JkZpmJD+Is3xFSjSk1FkpOX/SU+m0vEi6hSHxn/Ry3+xTIbk5b9YJkPyUkrKlJPsZa/z23NtJ+t4/Pxhgr3j9NbVKfuRhebNm1OnTh2Cg4PZuHEjX3zxBRs3buS9996jb9++PH36lO3btwMwduxYVqxYwYIFC2jatCkPHjzgypUrDBgwgNu3b1OhQgVOnz5N1apV6dGjB7dv32bfvn2ULZv31Fvp6emkp6erlxMSEvDy8pL/yELEn7Dm1cxQIRAIBILcrH+0mJ4uOV5Q3WcXVND+EQa9P7KwZMkSBg8eTFhYGO+9lzuAJCYmEhISwuzZs+nTpw++vr40bdqUAQMGaKRLSkqiQ4cOxMTEcPDgwXwDHsDMmTOxs7NTf7y8vHQzn1Twq22WZb7HmIyB/KPyKzBdTlIkc3zSNuKTtpEUSbvZU/ShYWg6wot+dYQX/eoYkpfi0nmVXjIlBTMzuvPZs9GkSoVMZF/IcVpXdHricOvWrTx69IijR4/yxht5Tylz+fJl0tPTadWq4OmmevTogaenJ+Hh4VhYWBSYdvz48Ywc+WLqqewrPdlYa04L1jQ0iYdJEq7WRhzpZ83vynr8LVWhseISAWjOeL/98SQ+dH4xUXFKt7Uovd4k5ZkSZp8GIHHYGZRmWVMsGd/7C8vNuWfryEsn0fWNImsUl5f8dAzJi1wdUb+ifg3JS2krE4CJkYqtyrd5gh03JA9qGkWw7fF0UlV2mClSNBO/dJwuLnQKenXr1uXUqVOEhoYSEBCQ56s6Cgtg2bz77rusX7+e48eP07Jl3tPoZGNubo65ue5nJmrKNwbbclk3TZE40u/FCy0lCa5KWYHUzzoNUo1Q9zNDjp1vBLblsPR/DxTGGD97McmrjbULlmbPq9b/PY1tFaiTKRVdo7i85KdjSF5E/Yr6LU31+5qXKRs/xX2Oq+y4KnlRkwg6O3/9Uoqs7VC+ca68xYFO3Zu+vr4cPHiQHTt28L///S/PNJUrV8bCwoIDBw4UqBUYGEhQUBAffPABf/zxhy525KMwhnbZ8wpqBuyHOJKAFcZGEhXfHZ6PwPM87YKytJ7jaGWGo9VLl+wa2ypcpzg09KpjSF500DEkL3nqGJIXHXQMyUueOobkpZSWyd/oPgBXVV68fPzNbzvFSZEGsly9epXmzZvTrVs3goODcw1kmTx5MiEhIQQHB9OkSRNiYmK4ePEi/fv31xjIkq03YcIE9uzZQ9OmTbXyUuS5Ny/tzBrFmeOxhXQbb87Vm06UQ3061vHISrNnNCRGv8hn65G1U6p9IG9bRdURXvSrI7zoV0d40a+OIXkpQOfCG0FEOTagZspJ3P/UPP7qtJ3naB0PJJm8/fbb0rBhw9TLly5dklxcXKSRI0dKffr0kTp27Kj+TqlUStOmTZPKly8vmZqaSt7e3tKMGTMkSZKkiIgICZBOnz6tTj9v3jzJxsZGOnr0qFZe4uPjJUCKj4+XW4wXKDMl6dZhSTq3JeuvMjN3mtR4SZpkm/W5+lveabShOHSEF/3qCC/61RFe9KtjSF600dHm+Ksl2sYD2ff0Dh06pLFctWpVHj7Me5SNQqHg66+/5uuvX+6zBR8fn1yvjR85cqTGQJUSQWFc+LDYnJfZPo11v+wuDh3hRb86wot+dYQX/eoYkhdtdLQ5/hYz4n16L7Hyz1vYlDGhTTU3HLL7qo2MoXKbF//nQVqGkj6hJwFY068BZUzzSFeITnFolKiOIXnRQseQvGilY0hetNAxJC9a6RiSl1JWpj+vx3D23lPa1XCnkot17nx6RAS9HKhUEvN+u0ZqhpIAH8cXQc+0DHy6peC8ksSJiFj1/3lSiE5xaJSojiF50ULHkLxopWNIXrTQMSQvWukYkpfi0jEkLwXorPwzgj+uxeBgZVbiQU+8WigH9+NSSc1QYmaioLyj5au2IxAIBP9J/N1sALgWnVji2xZBLwdXH2btgEplrTExFlUjEAgE+sDPNSvoZR9zSxJxZM/Btec7IPssRM2zZJjunvV5lqz7BopDR3jRr47wol8d4UW/OobkpQAd/+ygF52Ya0CjvhH39HJw9fmldvZZiAYZKbnX6UJx6Agv+tURXvSrI7zoV8eQvOSjU8nFGiMjiEvJ4HHSM8raFMNMW1oirvRykH2l5+dasjdWBQKBoDRhYWasHjdxrYS7OMWV3nMylCpuxiQB+VzpaYFFXkN2X4GGoekIL/rVEV70q2NIXopLxxC8+LnacPtJCleiE2lSyblY/GiDCHrPMVEYcXRcS65FJ+Fhr91k2TmxNDPh8tR2RfJQHBqGpiO86FdHeNGvjiF5KS4dQ/Eyqo0/X7X1x8fJqshe5CCC3nOMjIxwsSmDi02ZV21FIBAI/vPkGjBYQoh7egKBQCAoNYgrvecsOXiDpPRMOtfzzD1DgJECyjd98X8epGUoCVz/LwDf96yfz5Q8BesUh0aJ6hiSFy10DMmLVjqG5EULHUPyopWOIXkppWX64WgEF6MS+KqNP252JdPLJoLec7b9e59bj5Np4uucO+iZWsBnuwvMr5IkDl6NUf+fJ4XoFIdGieoYkhctdAzJi1Y6huRFCx1D8qKVjiF5KS4dQ/Kihc6PJ+9x9WEiHWq6l1jQE92bZJ2x3H6S9eCkn5t4XEEgEAhKAj+3kp+ZpViCXvPmzRk+fHi+39++fRsjIyPOnDmjXnf06FFq1qyJqakpH374YXHY0AmlSuLnU5GoJLA2N8HR0qzwTPnoZHPiVqzGcklqGJqO8KJfHeFFvzqG5KW4dAzJS+XnvWoHLj/k+M0nOnuRg+w3p+dFzrep54VSqSQmJgZnZ2dMTLJ6VBs2bIifnx8zZ87E2tqa4OBgtm/frhEYC6Oob07fe+EBk8Mu8SA+Tb3O3a4Mk96vRrsa7i8SPkuG4JpZ/w8/D2ZWuXQm7bzIw4R0nXWKQ6PEdQzJSyE6huRFax1D8lKIjiF50VrHkLyUwjLtvfCA8T+fJy4lo2ANLdE2Hui9e/PZs2cYGxvj5uamDngAN2/epGXLlnh6emJvb69vG7nYe+EBgetPaQQ8gOj4NALXn2LvhQeaGVKeZH3y0cm58+XqFIfGK9MxJC/56BiSF9k6huQlHx1D8iJbx5C8lKIyZWvkDHgFahQjsoNecnIyvXv3xtraGnd3d+bNm6fxvY+PD1OnTqV3797Y2toyaNAgje7N7P+fPHlCv379MDIyYvXq1UyePJmzZ89iZGSkXqcvlCqJyWGXyOsSV3r+mbTzIolpGaQ8yyTlmZIUyTzr80z5fF0miWkZTNp5sUg6xaHx6nQMyYuoX1G//736/S+WqTANgMlhl/TW1Sm7e3Pw4MHs3r2b0NBQXFxc+L//+z/++OMP+vXrR3BwMD4+PsTFxTFx4kT1vTpjY2MqVKjA6dOnqVmzJjExMfj7+zNlyhS6deuGnZ0dEyZMYO/evfz+++8A2NnZYWGhOTNKeno66ekvzi4SEhLw8vKS3b15/OYTeqz4S06xBQKBQKBH3kox4bBlpnp508A3aeTrpHV+bbs3ZT2ykJSUxKpVq1i/fj2tWrUCYM2aNXh6emqka9myJaNGjVIv3759W/1/dlenkZERdnZ2uLm5AWBtbY2JiYl6OS9mzpzJ5MmT5VjOk0eJaYUnEggEAkGJUTnDmMO8CHr6Ok7LCno3b97k2bNnNGzYUL3O0dERf39/jXQBAQHF4+4lxo8fz8iRI9XL2Vd6cnl5qrHIZQNRJsdibOWIx+cr1OuHtIdK7kb56tx4ILF4z4vl/vHmWEtGJBlJrLJ7cUVakE5xaBiajvBSespkSF5EmV6PMuWnkWak2emorykh9fJwupWVfiYQNTc3x9y86O9dalDBEXe7MkTHp2X1Q2c+Q8pIR8p8pk7jaG1EPR8LFIr8G0A9HwkHq1TikrN2lilGmGGEaY40hekUh4ah6QgvpadMhuRFlOn1KFN+Gtkh0whwsytDgwqO+fooCrIGsvj6+mJqasqJEyfU6+Li4rh27VqRjZiZmaFUKousow3GCiMmvV8NyKrgvPikqVmBOx9AoTDi02YFP9dXmE5xaBiajvCiXx3hRb86huSluHReFy/ZuSa9Xw3jQrzoiqygZ21tTf/+/Rk9ejTh4eFcuHCBvn37olAU/ckHHx8fIiIiOHPmDI8fP9YYsKIP2tVw5/ue9XJNfeNobcSQduYE+Gp3ERzga8KQduY4WGnuIDk6xaFhaDrCi351hBf96hiSl+LSeR28uNmV4fue9XR6Tk9bZI/eTEpKIjAwkJ9//hkbGxtGjRrF7t271Q+n+/j4MHz4cI0ZWm7fvq0evVmnTh0A7O3tCQ4Opm/fvkDWyMxPP/2UAwcO8PTpU3744Qf1d/lR1IfTIevxBbdy5Xj8MBq7sk78/PeWQs928kKlkrgYrESRqkBloaL6cGPZOsWhYWg6wot+dYQX/eoYkpfi0jE0L5dCVBilGGFibcKA2c10vsLTy+hNyLraW7duHevWrVOvGz16tPr/nCM1s/Hx8eHl2Pr06VONZXNzc7Zu3SrXTpExVhhhZpJ1pWpijE47H7LymRiDqgg6xaFhaDrCi351hBf96hiSl+LSMTgvClACZsZGeuvSzIl4y4KW/LLmFzYv20xsTCy+VX0ZOmUoVetU1Tr/2RNn2bx0M9fOX+PJoydMXTGVpm2byvKwYfEG/tz7J3dv3sW8jDnV61dn0PhBePt6y9LZsW4HO9ftJPp+NAA+fj70Htabhi0aFpIzfzYu2ciKWSvo3K8zQ74donW+1fNXsyZ4jcY6L18v1h5cK9tDTHQMy2cu5+TBk6SlpuHh48HYuWPxr+1feObndG/cnYf3H+Za37F3R4ZPG66VhlKpZM2CNez/ZT+xj2JxdnWmbde29BraCyMjeT/qlKQUQueGcmTfEeIex1G5RmWGfDuEKrWr5JunsLYmSRI/zP+B3Rt3k5SQRI2AGoyYMQJwk6VzeM9hwtaHce38NRKeJrBizwrAR2uNzIxMVs1ZxYmDJ3hw9wFWNlbUa1qPQeMGAfayvKyev5rwsHBiomIwMTXBr6Yf/cf0xwg/WTo5mT9+PmEbwujSPJDm/l201ggaGcS+rfs0tN54+w0+C5gh28ud63dYPnM5Z0+cRZmppHzl8vRqOBF7hZtWGi28W+RZtk5vDaRV1e5ae0lNTmV50HKO7DtCQlwC7l7ufPTZR1TmXVllio2JZfnM5fxz+B+SEpKo1bAW7/l+iZOp/FH4uiLesqAF4TvD+X7q9/QZ3oflu5fjW9WXMT3HEPc4TmuNtJQ0fKv5MmzaMJ19nD1xlg/7fMiS7UuYs2EOmZmZjOk5htSUVFk6Zd3KMnDcQJbtXsbSXUup27gu3wz4hoirETr5unL2CmEbw6hYtaJO+X38fNj2zzb1Z9G2RbI1Ep8m8r+P/oeJiQlBa4NYfWA1gRMCsbaT99aMpWFLNbzM3TAXgOYdmmutsen7TexYt4OhU4ayJnwNg8YP4selP/LzDz/L8gIwZ8wc/vnzH8YHjyd0fygBzQL46pOviImOyTdPYW3tx++zvIyYOYLvdn5HGcsyjOk5howco5e10UlLSaPGGzUYNH6QTl7SUtO4fuE6vYb2Ytmvy5iyfAr3bt3j6/5fyy6TZ0VPhk0ZxqrfVrFw20LcvNwY03MMiSlPZelk8+feP7l0+hLOrs6yvQA0aN5Aox1NWDRBtk7k7UiGdh6Kl68XCzYvYOW+lfQa2gtTE1OtNXJ62PbPNsbMHYORkRF1KzeT5WXJlCWcPHSSr0O+Zk34Gjr370zIxBDO3TimtY4kSUwYOIEHdx8wbdU0lu9ZjquHKyFbxpCeIe8YVhTElZ4WbFm5hQ49OtD+4/YAjJw5khPhJ9izeQ+ffPmJVhoNWzQs0pUUwOx1szWWx80bR6e6nbh2/hq1G9bWWqfxO401lgeMGcDOdTu5dPoSFfwryPKUmpzK9KHT+SroK9YtWld4hjwwNjHG0aVow5M3fb8JF3cXxs4bq17n7i3/Zri9k73G8sbvNlKufDlqv6l9/V785yJN2jShUatGALh5uXFg5wGunL0iy0t6WjqH9xxm2spp6v3bd2Rfjv1+jJ3rdtJ/dP888xXU1iRJYuuqrfT6Xy+atsk6Ax+/YDwf1f+IszeOUs+zlVY6AG06twEg+l50vmkK0rC2tWbuxrka64ZNHUbg+4HEvvlIfTWjjZfWH7bWWB48YTC//vgrkTG38HN60ba0+R3GRMewcOJCZq+bzfjPxssqUzamZqZ5tOlMjaXCdFbNWUXDFg354usv1Os8fDy4fDkTVZJ2Gi97OPrbUeo0qoOzvbtaQxudi/9epG2XttRpVAeA9z99n7ANYdyOvkoNtxdXcgXp3I+4z6VTlwjdH6o+zoyYMYJDv3Tm3xvhtHb+MN/tFyfiSq8QMp5lcO38Neo3ra9ep1AoqNe0HhdPXXyFziA5MesdgLb2ug3igayuuPCd4aSlplG9XnXZ+YO/CebNlm9Sv1n9whPnQ2REJF0CuvBJk0+YNnQaDyNzdy8WxrH9x/Cv5c+3X3xLp7qdGNh+ILs27tLZE2Tt+/2/7Kd9t/ayuiWrB1Tn1NFT3Lt1D4Abl25w4e8LNGjeQNb2lZlKVEoVZuaaw7vNy5hz/u/zsrSyeXD3AbExsRrt2drWmqp1qnIr6pJOmsVJckIyRkZGWJjr/qxvxrMMdm3chZWtFZ5lfWXlValUzBw+k26fd5N9ApiTM3+doVPdTvRu3psF/7eA+Lh42T7+Cv8Lz4qejO45mk51OxH4QSBH9h3R2VNsTCx/hf/Fu93fLTzxS1SvX51j+48REx2DJEmcPnaa+xH3qeqj/e8+41nW5NI527NCocDU2JSb0Rdke9IVcaVXCPGx8aiUKhycHTTWOzg7cPfm3VfkKutHsfjbxdQIqKHTj/PWlVt8+eGXPEt/hoWVBVOWT8HHz0eWRvjOcK5fuM7SsKWyt59N1bpVGTtvLF6+Xjx59IS1wWsZ1mUYoftDsbS21Fon6l4UO9bvoOuArnw65FOunL3CokmLMDE1oV3Xdjp5O7LvCEkJSbTrIi//J4M/ISUxhT4t+qAwVqBSqug/uj/vdHpHlo6ltSXV61dn3cJ1lK9UHoeyDoTvCOfSqUt4+HjI0somNiYWIM/2nHBd++56ffAs7RnLZi6jZceWWJhbocooPE9Ojv9+nClDppCemo6TixNzN8xFOmSncUVTGJu+24SxsTGd+3WWt/EcNGjegGbtmuHu7U7UnShWzlrJuN7jGNIyGG2vM54+fkpqciqbvttEv9H9+Hz855w8dJKJgyYyrOscKjnUle1r39Z9WFpZ8la7t7i5TF7eoVOGMm/cPD5u8DHGJsYoFApGBY3CO7KW1vXr7euNq4crK2atYNTMUZSxLMPWlVuJS4ohPiVWdnl0RQS915SQb0KIuBah0/0vAK+KXqzcu5KkhCQO/3qYoJFBBP8UrHXgexT1iMXfLmbOhjmYldHtxbuARleIb1VfqtWpRvfG3Tm46yAdunfQWkdSSfjX8mfg2IEAVK5RmYirEYRtCNM56P26+VcaNm+Is1vu+zoFcWjXIX7f/jvfLPoGHz8fbly8wZLJS3BydZLtZfyC8cwePZuuDbqiMFbgV8OPlh1bcu180SeEMCQyMzKZPHgyACOmj+BuqHyNOo3rsHLvSuJj49m1aReTB09mxHsLsUK7SYuvnrvKth+2sXz3ctkDjnLS8oOW6v8rVqlIxSoV+bTZp1yrfBY/J+2maFSpVAA0btOYrgO6AlCpeiUu/nuRI2d3Uam5/KC356c9tO7U+vnvNbPQ9Dn5ZfUvXD59memrpuPq6cq5E+cImRDCwPYOWpfJxNSEycsmM2fMHD6o9QEKYwX1m9aneoUGSJn6f3ms2keJbek1xc7RDoWxIteglbjHcTiW1c80OYURMiGE4weOE7IlhLLuZXXSMDUzVV8t+Nfy58rZK2wL3caooFGF5Mzi2vlrxD2OY9C7LwYxqJQqzp04xy9rfuG3G79hbGws25e1nTWeFTyJuh0lK5+TixPlK5fXWFe+cnn+3POnbA8A0fejOXXkFJOXT5add+n0pfQY3EN98KtYpSIPIx+y8buNsoOeh48HIVtCSE1JJSUxBSdXJyYPnqzT/UpA3WbjHsfh5PoiGMQ9jsPRSreBSEUlO+BFR0Yz/8f5WNlYIfegDGBhaYGHjwcePh5Uq1eNnm/15Oj5vbSp/qlW+c+fPM/Tx0/p1qibep1KqWJb5DLC//mZaZ+vl+0JoFz5ctg52hHzNAo/LV8aYOdoh7GJMT6VfTTWe1fy5uSlc7I9nDtxjns37zFxyUTZedPT0lk5eyVTlk9R36f2rerLjUs3+P2vLfi11X6uZf9a/uqT7cyMTOyd7PmsQSBejn6FZy4mRNArBFMzU/xq+nHq6Cn10FuVSsWpo6fo1KdTiXqRJImFExdyZO8RFvy0QOcDX37a2X3u2lCvST1C92uejs8aNQtvX296DO6hU8CDrIExUXeieOcjeV2B1QOqc+/mPY1192/dx9XTVScfe3/ai72TPY1aNpKdNz01PdcsRQqFAqkI7wezsLTAwtKCxKeJ/H34bz4f/7lOOu7e7jiWdeTU0VNUql4JyLo3fPnMZXq1fk9nf7qSHfDuR9xnweYF2DnYFZu2pJLIVGrfpt/p/E6ue9Njeo6hnncrGlZsr7OPmAcxJMQlYGel/UmyqZkpVWpXyd2mI+7jaCu/Tf+6+Vf8avpRqVol2XkzMzLJzMjMs02rJJVsPci6jwxZ5bnz8Bod6n2mk44uiKCnBV0HdCVoVBB+Nf2oWqcqW1dtJS0ljXYfa3/WnpqcSuTtSPXyg3sPuHHxBjb2Nrh6aNeIg78J5sCOA0xbOQ1LK0tiH2X1g1vZWmFeRvuJuFcEraBBiwa4lnMlJTmFA9sPcOb4mVyjQwvC0toy173EMpZlsHWwlXWP8ftp39OodSPcPNx4/PAxq+evRmGsoFXHVoVnzkHXAV0Z0mkI6xevp8V7Lbh85jK7Nu5iZNDIwjO/hEqlYu+WvbTt0hZjE/nBu1HrRqxftB6Xci5U8KvA9YvX2bJyi3r0rxxO/nESpKzu6MjbkSydsRRvX+8CtQpra136d2HdwnV4+Hjg7u1O6NxQnF2cqV2pCaRpr5PwNIFHkY94/PAxAHdv3iXzUSY2OGNvbV+ohpOLE5O+mMT1C9eZ8cMMVEqVuk1nKi1QYK6VF1sHW9YvWk+Td5rg6OJIfGw829duJ+ZhDPVavCWrbl4OusamxthaOeJq70XWY9iFeLG3ZU3wGt5q/xaOZR2JvBPJshnL8PDxoKpPgKz67fZ5N6Z8OYVaDWtRt3FdTh46ybHfjzG8yzytNSDrpOaP3X8Q+E0g+VGYTu03a7N0+lLMy5jj6uHK2RNn+W3bb3zU9AtZOod2HcLeyR6Xci7cunqLxd8upnalxlT10s+befJCBD0taPlBS+Jj41k9f3XWw+nVfJm1bpas7s2r564yotsI9fJ3U74DoG2XtoybP04rjZ3rdgIw4uMRGuvHzhsrq9ss7kkcM0fMJPZRLFY2VlSsUpHZ62YT8FbJNbxsYh7EMG3INBKeJmDnaEfNN2qyZPuSXI8OFEaV2lWYunwqK2atYG3IWty93Ply0peyB48A/HvkXx5GPqR9N93O7odOGUro3FBCvgkh7nEczq7OvP/p+/Qe1lu2VnJCMitnrSQmOgYbOxveevct+o/uj4lp/j/dwtpa98DupKamMm/8PJISkqgZUJNZ62aRFGaGSobOsf3HmDVqlvr7qUOmAtC+fm/ed+lVqEbfEX05tj/rOa+B7QZqlGH4x3M1BmsUpDNyxkju3bzHpK2TiI+Lx9beFv/a/izcuhDpkI/GQIvi+B0WpDFixghuXr7Jvq37SEpIwsnViYBmAfT7qh8PN8qr32btmjFixgg2LtnIokmL8PL1YvKyyThdrqEukzblCd8ZjiRJtOz44l6jnDKNmz+OiYsnsmLWCqYPnU7C0wRcPV3pP6Y/NZLfQ0rWXufJoyd8N/W7rO51FyfadG5DA8UnUHKP6cmfe9OQKI65NwE8PD2IiozCyc2JrSd1nwrtckgmqiQFCmsVVYfpdj5RHBqGpiO86FdHeNGvjiF5KS4dQ/JyJUSJMskISztTPpvVrPAM+aBtPBDP6QkEAoGg1CCCnkAgEAhKDSLoCQQCgaDUIIKeQCAQCEoNIugJBAKBoNQggp5AIBAISg0i6AkEAoGg1PBaP5ye/YhhQkJCkXSyJ3dVKVU8iXuis05qujGqZ8Yo0pU8iVO+Mg1D0xFe9KsjvOhXx5C8FJeOIXlJSTdB9UyBUbppkY7l2XkLe/T8tX44/f79+3h5ldxr5gUCgUBg2Ny7dw9PT898v3+tg55KpSIqKgobG5sivQpEoB0JCQl4eXlx7969Is2AI9AeUeclj6jzkqW46luSJBITEylXrlyuybFz8lp3byoUigIjukA/2NraioNBCSPqvOQRdV6yFEd929kV/pYOMZBFIBAIBKUGEfQEAoFAUGoQQU+gNebm5kyaNAlzc+3f3ScoGqLOSx5R5yVLSdf3az2QRSAQCAQCOYgrPYFAIBCUGkTQEwgEAkGpQQQ9gUAgEJQaRNATCAQCQalBBL1SzpIlS/Dx8aFMmTI0bNiQkydP5pt2xYoVNGvWDAcHBxwcHGjdunWu9H379sXIyEjj065dO30X47VCTp2vXr06V32WKVNGI40kSUycOBF3d3csLCxo3bo1169f13cxXhvk1Hfz5s1z1beRkREdOnRQpxFtvGAOHz7M+++/T7ly5TAyMmL79u2F5jl06BD16tXD3NycSpUqsXr16lxp5OzHghBBrxSzefNmRo4cyaRJkzh16hS1a9embdu2PHr0KM/0hw4dokePHhw8eJDjx4/j5eVFmzZtiIyM1EjXrl07Hjx4oP5s2rSpJIrzWiC3ziFrpoqc9Xnnzh2N72fPns3ChQtZunQpJ06cwMrKirZt25KWlqbv4hg8cuv7559/1qjrCxcuYGxsTNeuXTXSiTaeP8nJydSuXZslS5ZolT4iIoIOHTrQokULzpw5w/DhwxkwYAD79u1Tp9Hld5MvkqDU0qBBA+nLL79ULyuVSqlcuXLSzJkztcqfmZkp2djYSGvWrFGv69Onj9SxY8fitvqfQW6d//DDD5KdnV2+eiqVSnJzc5PmzJmjXvf06VPJ3Nxc2rRpU7H5fl0pahtfsGCBZGNjIyUlJanXiTauPYD0yy+/FJhmzJgxUvXq1TXWdevWTWrbtq16uaj7MSfiSq+U8uzZM/79919at26tXqdQKGjdujXHjx/XSiMlJYWMjAwcHR011h86dAgXFxf8/f0JDAzkyRPdX9f0X0LXOk9KSqJ8+fJ4eXnRsWNHLl68qP4uIiKC6OhoDU07OzsaNmyo9X78r1IcbXzVqlV0794dKysrjfWijRcfx48f19hHAG3btlXvo+LYjzkRQa+U8vjxY5RKJa6urhrrXV1diY6O1kpj7NixlCtXTqMxtmvXjrVr13LgwAFmzZrFH3/8Qfv27VEqdX9n138FXerc39+f0NBQduzYwfr161GpVDRu3Jj79+8DqPMVZT/+VylqGz958iQXLlxgwIABGutFGy9eoqOj89xHCQkJpKamFsuxKiev9VsWBK+OoKAgfvzxRw4dOqQxsKJ79+7q/2vWrEmtWrXw9fXl0KFDtGrV6lVYfa1p1KgRjRo1Ui83btyYqlWrsmzZMqZOnfoKnf33WbVqFTVr1qRBgwYa60Ubf70RV3qlFGdnZ4yNjXn48KHG+ocPH+Lm5lZg3rlz5xIUFMRvv/1GrVq1CkxbsWJFnJ2duXHjRpE9v+4Upc6zMTU1pW7duur6zM5XFM3/KkWp7+TkZH788Uf69+9f6HZEGy8abm5uee4jW1tbLCwsiuV3kxMR9EopZmZm1K9fnwMHDqjXqVQqDhw4oHFl8TKzZ89m6tSp7N27l4CAgEK3c//+fZ48eYK7u3ux+H6d0bXOc6JUKjl//ry6PitUqICbm5uGZkJCAidOnNBa879KUep7y5YtpKen07Nnz0K3I9p40WjUqJHGPgLYv3+/eh8Vx+9GA9lDXwT/GX788UfJ3NxcWr16tXTp0iVp0KBBkr29vRQdHS1JkiT16tVLGjdunDp9UFCQZGZmJm3dulV68OCB+pOYmChJkiQlJiZKX331lXT8+HEpIiJC+v3336V69epJlStXltLS0l5JGQ0NuXU+efJkad++fdLNmzelf//9V+revbtUpkwZ6eLFi+o0QUFBkr29vbRjxw7p3LlzUseOHaUKFSpIqampJV4+Q0NufWfTtGlTqVu3brnWizZeOImJidLp06el06dPS4A0f/586fTp09KdO3ckSZKkcePGSb169VKnv3XrlmRpaSmNHj1aunz5srRkyRLJ2NhY2rt3rzpNYftRDiLolXIWLVokeXt7S2ZmZlKDBg2kv/76S/3d22+/LfXp00e9XL58eQnI9Zk0aZIkSZKUkpIitWnTRipbtqxkamoqlS9fXho4cKBODfO/jJw6Hz58uDqtq6ur9O6770qnTp3S0FOpVNKECRMkV1dXydzcXGrVqpV09erVkiqOwSOnviVJkq5cuSIB0m+//ZZLS7Txwjl48GCex4nseu7Tp4/09ttv58pTp04dyczMTKpYsaL0ww8/5NItaD/KQbxaSCAQCASlBnFPTyAQCASlBhH0BAKBQFBqEEFPIBAIBKUGEfQEAoFAUGoQQU8gEAgEpQYR9AQCgUBQahBBTyAQCASlBhH0BAKBQFBqEEFPIBAIBKUGEfQEAoFAUGoQQU8geI2ZNGkSNWvWxMrKCldXVwIDA8nIyHjVtgQCg0W8RFYgeE2RsiaMZ9myZXh4eHDp0iX69OlDrVq1CAwMfNX2BAKDREw4LRD8h/jkk09wcXEhODj4VVsRCAwS0b0pELym3Llzhy+//JIaNWrg4OCAtbU1P/30E56enq/amkBgsIigJxC8hsTExPDGG2/w5MkT5s+fz5EjRzh27BgKhYLatWu/ansCgcEi7ukJBK8hYWFhKJVKNm3ahJGREQCLFy8mIyODOnXqvFpzAoEBI4KeQPAa4uTkREJCAjt37qRatWqEhYUxc+ZMPDw8KFu27Ku2JxAYLGIgi0DwGqJSqRg8eDAbN27EwsKCnj17kpaWxp07d9i1a9erticQGCwi6AkEAoGg1CAGsggEAoGg1CCCnkAgEAhKDSLoCQQCgaDUIIKeQCAQCEoNIugJBAKBoNQggp5AIBAISg0i6AkEAoGg1CCCnkAgEAhKDSLoCQQCgaDUIIKeQCAQCEoNIugJBAKBoNQggp5AIBAISg3/D+ZpjhB+JrhaAAAAAElFTkSuQmCC",
"text/plain": [
""
]
},
"metadata": {},
"output_type": "display_data"
}
],
"source": [
"reset_plotting() # Default style for Simbelmynë\n",
"\n",
"generate_sim_params(lpt_params, ICs_path, wd, simdir, None, force)\n",
"\n",
"print(f\"SPM nsteps = {nsteps_spm}:\")\n",
"file_ext = f\"nsteps{nsteps_spm}\" # \"spm\" is already in the filename\n",
"generate_sim_params(spm_params, ICs_path, wd, simdir, file_ext, force)\n",
"\n",
"print(f\"P3M nsteps = {nsteps_p3m}:\")\n",
"file_ext = f\"nsteps{nsteps_p3m}\" # \"p3m\" is already in the filename\n",
"generate_sim_params(p3m_params, ICs_path, wd, simdir, file_ext, force)\n",
"\n",
"setup_plotting() # Reset plotting style for this project"
]
},
{
"cell_type": "markdown",
"id": "4cbfc7f9",
"metadata": {},
"source": [
"### Generate the initial phase"
]
},
{
"cell_type": "code",
"execution_count": 7,
"id": "ac1596ef",
"metadata": {},
"outputs": [],
"source": [
"generate_white_noise_Field(\n",
" L=L,\n",
" size=N,\n",
" corner=corner,\n",
" seedphase=BASELINE_SEEDPHASE,\n",
" fname_whitenoise=input_white_noise_file,\n",
" seedname_whitenoise=input_seed_phase_file,\n",
" force_phase=force,\n",
")"
]
},
{
"cell_type": "markdown",
"id": "b1dfa6e3",
"metadata": {},
"source": [
"### Generating the input power spectrum\n",
"\n",
"The second preparatory step is to compute the initial power spectrum to be used in the simulations, given the cosmological parameters and prescription specified in ``params.py``. The power spectrum is saved in `input_power_file`."
]
},
{
"cell_type": "code",
"execution_count": 8,
"id": "3c2cf19b",
"metadata": {},
"outputs": [],
"source": [
"# If cosmo[\"WhichSpectrum\"] == \"class\", then classy is required.\n",
"if not isfile(input_power_file) or force:\n",
" Pk = PowerSpectrum(L, L, L, N, N, N, cosmo_small_to_full_dict(cosmo))\n",
" Pk.write(input_power_file)"
]
},
{
"cell_type": "markdown",
"id": "5f00a570",
"metadata": {},
"source": [
"## Running the simulations\n",
"\n",
"We are now ready to run the actual simulations using the Simbelmynë executable. Warning: the following may take some time, even in relatively low dimension, and should not be run on a login node."
]
},
{
"cell_type": "code",
"execution_count": 9,
"id": "9a1ac822",
"metadata": {},
"outputs": [
{
"name": "stdout",
"output_type": "stream",
"text": [
"[02:24:16\u001b[00m|\u001b[38;5;227mCOMMAND \u001b[00m]|\u001b[38;5;227msimbelmyne /home/hoellinger/wip3m/results/forcediag1/example_lpt.sbmy /data70/hoellinger/WIP3M/forcediag1/logs/lpt.txt\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;117mINFO \u001b[00m]|\n",
"[02:24:16\u001b[00m|\u001b[38;5;117mINFO \u001b[00m]| .-~~-.--.\n",
"[02:24:16\u001b[00m|\u001b[38;5;117mINFO \u001b[00m]| : )\n",
"[02:24:16\u001b[00m|\u001b[38;5;117mINFO \u001b[00m]| .~ ~ -.\\ /.- ~~ .\n",
"[02:24:16\u001b[00m|\u001b[38;5;117mINFO \u001b[00m]| > `. .' <\n",
"[02:24:16\u001b[00m|\u001b[38;5;117mINFO \u001b[00m]| ( .- -. )\n",
"[02:24:16\u001b[00m|\u001b[38;5;117mINFO \u001b[00m]| `- -.-~ `- -' ~-.- -'\n",
"[02:24:16\u001b[00m|\u001b[38;5;117mINFO \u001b[00m]| ( : ) _ _ .-: ___________________________________\n",
"[02:24:16\u001b[00m|\u001b[38;5;117mINFO \u001b[00m]| ~--. : .--~ .-~ .-~ } \u001b[1;38;5;157mSIMBELMYNË\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;117mINFO \u001b[00m]| ~-.-^-.-~ \\_ .~ .-~ .~ (c) Florent Leclercq 2012 - SBMY_YEAR \n",
"[02:24:16\u001b[00m|\u001b[38;5;117mINFO \u001b[00m]| \\ ' \\ '_ _ -~ ___________________________________\n",
"[02:24:16\u001b[00m|\u001b[38;5;117mINFO \u001b[00m]| `.`. //\n",
"[02:24:16\u001b[00m|\u001b[38;5;117mINFO \u001b[00m]| . - ~ ~-.__`.`-.//\n",
"[02:24:16\u001b[00m|\u001b[38;5;117mINFO \u001b[00m]| .-~ . - ~ }~ ~ ~-.~-.\n",
"[02:24:16\u001b[00m|\u001b[38;5;117mINFO \u001b[00m]| .' .-~ .-~ :/~-.~-./:\n",
"[02:24:16\u001b[00m|\u001b[38;5;117mINFO \u001b[00m]| /_~_ _ . - ~ ~-.~-._\n",
"[02:24:16\u001b[00m|\u001b[38;5;117mINFO \u001b[00m]| ~-.<\n",
"[02:24:16\u001b[00m|\u001b[38;5;117mINFO \u001b[00m]|\n",
"[02:24:16\u001b[00m|\u001b[38;5;117mINFO \u001b[00m]|2025-05-22 02:24:16: Starting SIMBELMYNË, commit hash 860f12de187bb46026620362f000d9aa8bc3fb41\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]|\u001b[38;5;246mDebug mode ON\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]|Reading parameter file in '/home/hoellinger/wip3m/results/forcediag1/example_lpt.sbmy'...\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly allocated memory (160232 bytes) at 0x55cb08575200 for hashtab in \u001b[38;5;227mread_param.c\u001b[0;36m:\u001b[38;5;192mread_parameterfile\u001b[0;36m:\u001b[0;32m347\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly allocated memory (32 bytes) at 0x55cb082213b0 for SnapFormat in \u001b[38;5;227mread_param.c\u001b[0;36m:\u001b[38;5;192mhash_set\u001b[0;36m:\u001b[0;32m43\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly allocated memory (32 bytes) at 0x55cb08188330 for NumFilesPerSnapshot in \u001b[38;5;227mread_param.c\u001b[0;36m:\u001b[38;5;192mhash_set\u001b[0;36m:\u001b[0;32m43\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly allocated memory (32 bytes) at 0x55cb08251be0 for ModuleLPT in \u001b[38;5;227mread_param.c\u001b[0;36m:\u001b[38;5;192mhash_set\u001b[0;36m:\u001b[0;32m43\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly allocated memory (32 bytes) at 0x55cb07a70820 for InputRngStateLPT in \u001b[38;5;227mread_param.c\u001b[0;36m:\u001b[38;5;192mhash_set\u001b[0;36m:\u001b[0;32m43\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly allocated memory (32 bytes) at 0x55cb07f72fa0 for OutputRngStateLPT in \u001b[38;5;227mread_param.c\u001b[0;36m:\u001b[38;5;192mhash_set\u001b[0;36m:\u001b[0;32m43\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly allocated memory (32 bytes) at 0x55cb08183df0 for Particles in \u001b[38;5;227mread_param.c\u001b[0;36m:\u001b[38;5;192mhash_set\u001b[0;36m:\u001b[0;32m43\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly allocated memory (32 bytes) at 0x55cb080372f0 for Mesh in \u001b[38;5;227mread_param.c\u001b[0;36m:\u001b[38;5;192mhash_set\u001b[0;36m:\u001b[0;32m43\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly allocated memory (32 bytes) at 0x55cb07f6d1f0 for BoxSize in \u001b[38;5;227mread_param.c\u001b[0;36m:\u001b[38;5;192mhash_set\u001b[0;36m:\u001b[0;32m43\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly allocated memory (32 bytes) at 0x55cb084d4e60 for corner0 in \u001b[38;5;227mread_param.c\u001b[0;36m:\u001b[38;5;192mhash_set\u001b[0;36m:\u001b[0;32m43\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly allocated memory (32 bytes) at 0x55cb08184340 for corner1 in \u001b[38;5;227mread_param.c\u001b[0;36m:\u001b[38;5;192mhash_set\u001b[0;36m:\u001b[0;32m43\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly allocated memory (32 bytes) at 0x55cb08181f00 for corner2 in \u001b[38;5;227mread_param.c\u001b[0;36m:\u001b[38;5;192mhash_set\u001b[0;36m:\u001b[0;32m43\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly allocated memory (32 bytes) at 0x55cb08251dd0 for ICsMode in \u001b[38;5;227mread_param.c\u001b[0;36m:\u001b[38;5;192mhash_set\u001b[0;36m:\u001b[0;32m43\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly allocated memory (32 bytes) at 0x55cb07f74740 for WriteICsRngState in \u001b[38;5;227mread_param.c\u001b[0;36m:\u001b[38;5;192mhash_set\u001b[0;36m:\u001b[0;32m43\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly allocated memory (32 bytes) at 0x55cb07fe0d70 for OutputICsRngState in \u001b[38;5;227mread_param.c\u001b[0;36m:\u001b[38;5;192mhash_set\u001b[0;36m:\u001b[0;32m43\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly allocated memory (32 bytes) at 0x55cb0816e480 for WriteWhiteNoise in \u001b[38;5;227mread_param.c\u001b[0;36m:\u001b[38;5;192mhash_set\u001b[0;36m:\u001b[0;32m43\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly allocated memory (32 bytes) at 0x55cb07f719c0 for OutputWhiteNoise in \u001b[38;5;227mread_param.c\u001b[0;36m:\u001b[38;5;192mhash_set\u001b[0;36m:\u001b[0;32m43\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly allocated memory (32 bytes) at 0x55cb082508a0 for InputWhiteNoise in \u001b[38;5;227mread_param.c\u001b[0;36m:\u001b[38;5;192mhash_set\u001b[0;36m:\u001b[0;32m43\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly allocated memory (32 bytes) at 0x55cb07a23f30 for InputInitialConditions in \u001b[38;5;227mread_param.c\u001b[0;36m:\u001b[38;5;192mhash_set\u001b[0;36m:\u001b[0;32m43\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly allocated memory (32 bytes) at 0x55cb081843a0 for WriteInitialConditions in \u001b[38;5;227mread_param.c\u001b[0;36m:\u001b[38;5;192mhash_set\u001b[0;36m:\u001b[0;32m43\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly allocated memory (32 bytes) at 0x55cb081749d0 for OutputInitialConditions in \u001b[38;5;227mread_param.c\u001b[0;36m:\u001b[38;5;192mhash_set\u001b[0;36m:\u001b[0;32m43\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly allocated memory (32 bytes) at 0x55cb07a70ac0 for InputPowerSpectrum in \u001b[38;5;227mread_param.c\u001b[0;36m:\u001b[38;5;192mhash_set\u001b[0;36m:\u001b[0;32m43\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly allocated memory (32 bytes) at 0x55cb080b33a0 for RedshiftLPT in \u001b[38;5;227mread_param.c\u001b[0;36m:\u001b[38;5;192mhash_set\u001b[0;36m:\u001b[0;32m43\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly allocated memory (32 bytes) at 0x55cb08200dd0 for WriteLPTSnapshot in \u001b[38;5;227mread_param.c\u001b[0;36m:\u001b[38;5;192mhash_set\u001b[0;36m:\u001b[0;32m43\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly allocated memory (32 bytes) at 0x55cb07f77ce0 for OutputLPTSnapshot in \u001b[38;5;227mread_param.c\u001b[0;36m:\u001b[38;5;192mhash_set\u001b[0;36m:\u001b[0;32m43\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly allocated memory (32 bytes) at 0x55cb081fabf0 for WriteLPTDensity in \u001b[38;5;227mread_param.c\u001b[0;36m:\u001b[38;5;192mhash_set\u001b[0;36m:\u001b[0;32m43\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly allocated memory (32 bytes) at 0x55cb08207250 for OutputLPTDensity in \u001b[38;5;227mread_param.c\u001b[0;36m:\u001b[38;5;192mhash_set\u001b[0;36m:\u001b[0;32m43\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly allocated memory (32 bytes) at 0x55cb07839e20 for WriteLPTDisplacements in \u001b[38;5;227mread_param.c\u001b[0;36m:\u001b[38;5;192mhash_set\u001b[0;36m:\u001b[0;32m43\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly allocated memory (32 bytes) at 0x55cb08206660 for OutputPsiLPT1 in \u001b[38;5;227mread_param.c\u001b[0;36m:\u001b[38;5;192mhash_set\u001b[0;36m:\u001b[0;32m43\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly allocated memory (32 bytes) at 0x55cb08253d10 for OutputPsiLPT2 in \u001b[38;5;227mread_param.c\u001b[0;36m:\u001b[38;5;192mhash_set\u001b[0;36m:\u001b[0;32m43\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly allocated memory (32 bytes) at 0x55cb0820c7f0 for ModulePMCOLA in \u001b[38;5;227mread_param.c\u001b[0;36m:\u001b[38;5;192mhash_set\u001b[0;36m:\u001b[0;32m43\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly allocated memory (32 bytes) at 0x55cb078da870 for InputPMCOLASnapshot in \u001b[38;5;227mread_param.c\u001b[0;36m:\u001b[38;5;192mhash_set\u001b[0;36m:\u001b[0;32m43\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly allocated memory (32 bytes) at 0x55cb08252370 for InputPsiLPT1 in \u001b[38;5;227mread_param.c\u001b[0;36m:\u001b[38;5;192mhash_set\u001b[0;36m:\u001b[0;32m43\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly allocated memory (32 bytes) at 0x55cb08263760 for InputPsiLPT2 in \u001b[38;5;227mread_param.c\u001b[0;36m:\u001b[38;5;192mhash_set\u001b[0;36m:\u001b[0;32m43\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly allocated memory (32 bytes) at 0x55cb082060c0 for IsNonZeroInitialMomenta in \u001b[38;5;227mread_param.c\u001b[0;36m:\u001b[38;5;192mhash_set\u001b[0;36m:\u001b[0;32m43\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly allocated memory (32 bytes) at 0x55cb08251cc0 for InputInitialMomenta in \u001b[38;5;227mread_param.c\u001b[0;36m:\u001b[38;5;192mhash_set\u001b[0;36m:\u001b[0;32m43\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly allocated memory (32 bytes) at 0x55cb08251cf0 for EvolutionMode in \u001b[38;5;227mread_param.c\u001b[0;36m:\u001b[38;5;192mhash_set\u001b[0;36m:\u001b[0;32m43\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly allocated memory (32 bytes) at 0x55cb08184000 for ParticleMesh in \u001b[38;5;227mread_param.c\u001b[0;36m:\u001b[38;5;192mhash_set\u001b[0;36m:\u001b[0;32m43\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly allocated memory (32 bytes) at 0x55cb07a708f0 for TimeStepDistribution in \u001b[38;5;227mread_param.c\u001b[0;36m:\u001b[38;5;192mhash_set\u001b[0;36m:\u001b[0;32m43\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly allocated memory (32 bytes) at 0x55cb0825f680 for ModifiedDiscretization in \u001b[38;5;227mread_param.c\u001b[0;36m:\u001b[38;5;192mhash_set\u001b[0;36m:\u001b[0;32m43\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly allocated memory (32 bytes) at 0x55cb08209960 for n_LPT in \u001b[38;5;227mread_param.c\u001b[0;36m:\u001b[38;5;192mhash_set\u001b[0;36m:\u001b[0;32m43\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly allocated memory (32 bytes) at 0x55cb081fe5b0 for n_Tiles in \u001b[38;5;227mread_param.c\u001b[0;36m:\u001b[38;5;192mhash_set\u001b[0;36m:\u001b[0;32m43\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly allocated memory (32 bytes) at 0x55cb08251b20 for nPairsForceDiagnostic in \u001b[38;5;227mread_param.c\u001b[0;36m:\u001b[38;5;192mhash_set\u001b[0;36m:\u001b[0;32m43\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly allocated memory (32 bytes) at 0x55cb08262b60 for nBinsForceDiagnostic in \u001b[38;5;227mread_param.c\u001b[0;36m:\u001b[38;5;192mhash_set\u001b[0;36m:\u001b[0;32m43\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly allocated memory (32 bytes) at 0x55cb0825f7d0 for maxTrialsForceDiagnostic in \u001b[38;5;227mread_param.c\u001b[0;36m:\u001b[38;5;192mhash_set\u001b[0;36m:\u001b[0;32m43\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly allocated memory (32 bytes) at 0x55cb08253d90 for OutputForceDiagnostic in \u001b[38;5;227mread_param.c\u001b[0;36m:\u001b[38;5;192mhash_set\u001b[0;36m:\u001b[0;32m43\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly allocated memory (32 bytes) at 0x55cb08211f90 for RunForceDiagnostic in \u001b[38;5;227mread_param.c\u001b[0;36m:\u001b[38;5;192mhash_set\u001b[0;36m:\u001b[0;32m43\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly allocated memory (32 bytes) at 0x55cb08182b50 for WriteSnapshots in \u001b[38;5;227mread_param.c\u001b[0;36m:\u001b[38;5;192mhash_set\u001b[0;36m:\u001b[0;32m43\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly allocated memory (32 bytes) at 0x55cb08181fa0 for OutputSnapshotsBase in \u001b[38;5;227mread_param.c\u001b[0;36m:\u001b[38;5;192mhash_set\u001b[0;36m:\u001b[0;32m43\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly allocated memory (32 bytes) at 0x55cb08254500 for OutputSnapshotsExt in \u001b[38;5;227mread_param.c\u001b[0;36m:\u001b[38;5;192mhash_set\u001b[0;36m:\u001b[0;32m43\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly allocated memory (32 bytes) at 0x55cb08254530 for WriteDensities in \u001b[38;5;227mread_param.c\u001b[0;36m:\u001b[38;5;192mhash_set\u001b[0;36m:\u001b[0;32m43\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly allocated memory (32 bytes) at 0x55cb0825f4f0 for OutputDensitiesBase in \u001b[38;5;227mread_param.c\u001b[0;36m:\u001b[38;5;192mhash_set\u001b[0;36m:\u001b[0;32m43\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly allocated memory (32 bytes) at 0x55cb082116a0 for OutputDensitiesExt in \u001b[38;5;227mread_param.c\u001b[0;36m:\u001b[38;5;192mhash_set\u001b[0;36m:\u001b[0;32m43\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly allocated memory (32 bytes) at 0x55cb08257cf0 for RedshiftFCs in \u001b[38;5;227mread_param.c\u001b[0;36m:\u001b[38;5;192mhash_set\u001b[0;36m:\u001b[0;32m43\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly allocated memory (32 bytes) at 0x55cb08257d20 for WriteFinalSnapshot in \u001b[38;5;227mread_param.c\u001b[0;36m:\u001b[38;5;192mhash_set\u001b[0;36m:\u001b[0;32m43\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly allocated memory (32 bytes) at 0x55cb08041300 for OutputFinalSnapshot in \u001b[38;5;227mread_param.c\u001b[0;36m:\u001b[38;5;192mhash_set\u001b[0;36m:\u001b[0;32m43\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly allocated memory (32 bytes) at 0x55cb08041350 for WriteFinalDensity in \u001b[38;5;227mread_param.c\u001b[0;36m:\u001b[38;5;192mhash_set\u001b[0;36m:\u001b[0;32m43\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly allocated memory (32 bytes) at 0x55cb08208880 for OutputFinalDensity in \u001b[38;5;227mread_param.c\u001b[0;36m:\u001b[38;5;192mhash_set\u001b[0;36m:\u001b[0;32m43\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly allocated memory (32 bytes) at 0x55cb082164f0 for WriteReferenceFrame in \u001b[38;5;227mread_param.c\u001b[0;36m:\u001b[38;5;192mhash_set\u001b[0;36m:\u001b[0;32m43\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly allocated memory (32 bytes) at 0x55cb08216540 for OutputMomentaBase in \u001b[38;5;227mread_param.c\u001b[0;36m:\u001b[38;5;192mhash_set\u001b[0;36m:\u001b[0;32m43\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly allocated memory (32 bytes) at 0x55cb081827a0 for OutputMomentaExt in \u001b[38;5;227mread_param.c\u001b[0;36m:\u001b[38;5;192mhash_set\u001b[0;36m:\u001b[0;32m43\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly allocated memory (32 bytes) at 0x55cb07c35590 for ReadReferenceFrame in \u001b[38;5;227mread_param.c\u001b[0;36m:\u001b[38;5;192mhash_set\u001b[0;36m:\u001b[0;32m43\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly allocated memory (32 bytes) at 0x55cb07c355e0 for InputMomentaBase in \u001b[38;5;227mread_param.c\u001b[0;36m:\u001b[38;5;192mhash_set\u001b[0;36m:\u001b[0;32m43\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly allocated memory (32 bytes) at 0x55cb084dcb80 for InputMomentaExt in \u001b[38;5;227mread_param.c\u001b[0;36m:\u001b[38;5;192mhash_set\u001b[0;36m:\u001b[0;32m43\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly allocated memory (32 bytes) at 0x55cb0820ce00 for NumberOfTilesPerDimension in \u001b[38;5;227mread_param.c\u001b[0;36m:\u001b[38;5;192mhash_set\u001b[0;36m:\u001b[0;32m43\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly allocated memory (32 bytes) at 0x55cb0820ce60 for NumberOfParticlesInBuffer in \u001b[38;5;227mread_param.c\u001b[0;36m:\u001b[38;5;192mhash_set\u001b[0;36m:\u001b[0;32m43\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly allocated memory (32 bytes) at 0x55cb0825c3a0 for OutputLPTPotential1 in \u001b[38;5;227mread_param.c\u001b[0;36m:\u001b[38;5;192mhash_set\u001b[0;36m:\u001b[0;32m43\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly allocated memory (32 bytes) at 0x55cb08219d60 for OutputLPTPotential2 in \u001b[38;5;227mread_param.c\u001b[0;36m:\u001b[38;5;192mhash_set\u001b[0;36m:\u001b[0;32m43\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly allocated memory (32 bytes) at 0x55cb08219db0 for OutputTilesBase in \u001b[38;5;227mread_param.c\u001b[0;36m:\u001b[38;5;192mhash_set\u001b[0;36m:\u001b[0;32m43\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly allocated memory (32 bytes) at 0x55cb08254290 for OutputTilesExt in \u001b[38;5;227mread_param.c\u001b[0;36m:\u001b[38;5;192mhash_set\u001b[0;36m:\u001b[0;32m43\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly allocated memory (32 bytes) at 0x55cb08207450 for ModuleRSD in \u001b[38;5;227mread_param.c\u001b[0;36m:\u001b[38;5;192mhash_set\u001b[0;36m:\u001b[0;32m43\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly allocated memory (32 bytes) at 0x55cb08207480 for DoNonLinearMapping in \u001b[38;5;227mread_param.c\u001b[0;36m:\u001b[38;5;192mhash_set\u001b[0;36m:\u001b[0;32m43\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly allocated memory (32 bytes) at 0x55cb0820cae0 for vobs0 in \u001b[38;5;227mread_param.c\u001b[0;36m:\u001b[38;5;192mhash_set\u001b[0;36m:\u001b[0;32m43\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly allocated memory (32 bytes) at 0x55cb0820cb30 for vobs1 in \u001b[38;5;227mread_param.c\u001b[0;36m:\u001b[38;5;192mhash_set\u001b[0;36m:\u001b[0;32m43\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly allocated memory (32 bytes) at 0x55cb081f9a60 for vobs2 in \u001b[38;5;227mread_param.c\u001b[0;36m:\u001b[38;5;192mhash_set\u001b[0;36m:\u001b[0;32m43\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly allocated memory (32 bytes) at 0x55cb08252120 for alpha1RSD in \u001b[38;5;227mread_param.c\u001b[0;36m:\u001b[38;5;192mhash_set\u001b[0;36m:\u001b[0;32m43\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly allocated memory (32 bytes) at 0x55cb08252150 for DoLPTSplit in \u001b[38;5;227mread_param.c\u001b[0;36m:\u001b[38;5;192mhash_set\u001b[0;36m:\u001b[0;32m43\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly allocated memory (32 bytes) at 0x55cb08182900 for alpha2RSD in \u001b[38;5;227mread_param.c\u001b[0;36m:\u001b[38;5;192mhash_set\u001b[0;36m:\u001b[0;32m43\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly allocated memory (32 bytes) at 0x55cb08182930 for WriteRSSnapshot in \u001b[38;5;227mread_param.c\u001b[0;36m:\u001b[38;5;192mhash_set\u001b[0;36m:\u001b[0;32m43\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly allocated memory (32 bytes) at 0x55cb0821a0b0 for OutputRSSnapshot in \u001b[38;5;227mread_param.c\u001b[0;36m:\u001b[38;5;192mhash_set\u001b[0;36m:\u001b[0;32m43\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly allocated memory (32 bytes) at 0x55cb0821a0e0 for WriteRSDensity in \u001b[38;5;227mread_param.c\u001b[0;36m:\u001b[38;5;192mhash_set\u001b[0;36m:\u001b[0;32m43\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly allocated memory (32 bytes) at 0x55cb08201590 for OutputRSDensity in \u001b[38;5;227mread_param.c\u001b[0;36m:\u001b[38;5;192mhash_set\u001b[0;36m:\u001b[0;32m43\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly allocated memory (32 bytes) at 0x55cb082015c0 for ModuleMocks in \u001b[38;5;227mread_param.c\u001b[0;36m:\u001b[38;5;192mhash_set\u001b[0;36m:\u001b[0;32m43\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly allocated memory (32 bytes) at 0x55cb0821ab10 for InputRngStateMocks in \u001b[38;5;227mread_param.c\u001b[0;36m:\u001b[38;5;192mhash_set\u001b[0;36m:\u001b[0;32m43\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly allocated memory (32 bytes) at 0x55cb0821ab40 for OutputRngStateMocks in \u001b[38;5;227mread_param.c\u001b[0;36m:\u001b[38;5;192mhash_set\u001b[0;36m:\u001b[0;32m43\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly allocated memory (32 bytes) at 0x55cb07d58f50 for WriteMocksRngState in \u001b[38;5;227mread_param.c\u001b[0;36m:\u001b[38;5;192mhash_set\u001b[0;36m:\u001b[0;32m43\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly allocated memory (32 bytes) at 0x55cb07d58f80 for OutputMocksRngState in \u001b[38;5;227mread_param.c\u001b[0;36m:\u001b[38;5;192mhash_set\u001b[0;36m:\u001b[0;32m43\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly allocated memory (32 bytes) at 0x55cb07d58fd0 for NoiseModel in \u001b[38;5;227mread_param.c\u001b[0;36m:\u001b[38;5;192mhash_set\u001b[0;36m:\u001b[0;32m43\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly allocated memory (32 bytes) at 0x55cb08130020 for NumberOfNoiseRealizations in \u001b[38;5;227mread_param.c\u001b[0;36m:\u001b[38;5;192mhash_set\u001b[0;36m:\u001b[0;32m43\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly allocated memory (32 bytes) at 0x55cb08130080 for InputDensityMocks in \u001b[38;5;227mread_param.c\u001b[0;36m:\u001b[38;5;192mhash_set\u001b[0;36m:\u001b[0;32m43\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly allocated memory (32 bytes) at 0x55cb0812bd70 for InputSurveyGeometry in \u001b[38;5;227mread_param.c\u001b[0;36m:\u001b[38;5;192mhash_set\u001b[0;36m:\u001b[0;32m43\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly allocated memory (32 bytes) at 0x55cb0812bdc0 for InputSummaryStatskGrid in \u001b[38;5;227mread_param.c\u001b[0;36m:\u001b[38;5;192mhash_set\u001b[0;36m:\u001b[0;32m43\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly allocated memory (32 bytes) at 0x55cb06b46970 for WriteMocks in \u001b[38;5;227mread_param.c\u001b[0;36m:\u001b[38;5;192mhash_set\u001b[0;36m:\u001b[0;32m43\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly allocated memory (32 bytes) at 0x55cb06b469c0 for OutputMockBase in \u001b[38;5;227mread_param.c\u001b[0;36m:\u001b[38;5;192mhash_set\u001b[0;36m:\u001b[0;32m43\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly allocated memory (32 bytes) at 0x55cb0792fb70 for OutputMockExt in \u001b[38;5;227mread_param.c\u001b[0;36m:\u001b[38;5;192mhash_set\u001b[0;36m:\u001b[0;32m43\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly allocated memory (32 bytes) at 0x55cb0792fbc0 for WriteSummaryStats in \u001b[38;5;227mread_param.c\u001b[0;36m:\u001b[38;5;192mhash_set\u001b[0;36m:\u001b[0;32m43\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly allocated memory (32 bytes) at 0x55cb08212520 for OutputSummaryStats in \u001b[38;5;227mread_param.c\u001b[0;36m:\u001b[38;5;192mhash_set\u001b[0;36m:\u001b[0;32m43\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly allocated memory (32 bytes) at 0x55cb08212570 for h in \u001b[38;5;227mread_param.c\u001b[0;36m:\u001b[38;5;192mhash_set\u001b[0;36m:\u001b[0;32m43\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly allocated memory (32 bytes) at 0x55cb06c61ac0 for Omega_r in \u001b[38;5;227mread_param.c\u001b[0;36m:\u001b[38;5;192mhash_set\u001b[0;36m:\u001b[0;32m43\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly allocated memory (32 bytes) at 0x55cb06c61b10 for Omega_q in \u001b[38;5;227mread_param.c\u001b[0;36m:\u001b[38;5;192mhash_set\u001b[0;36m:\u001b[0;32m43\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly allocated memory (32 bytes) at 0x55cb07916830 for Omega_b in \u001b[38;5;227mread_param.c\u001b[0;36m:\u001b[38;5;192mhash_set\u001b[0;36m:\u001b[0;32m43\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly allocated memory (32 bytes) at 0x55cb07916880 for Omega_m in \u001b[38;5;227mread_param.c\u001b[0;36m:\u001b[38;5;192mhash_set\u001b[0;36m:\u001b[0;32m43\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly allocated memory (32 bytes) at 0x55cb0812d6f0 for Omega_k in \u001b[38;5;227mread_param.c\u001b[0;36m:\u001b[38;5;192mhash_set\u001b[0;36m:\u001b[0;32m43\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly allocated memory (32 bytes) at 0x55cb0812d740 for n_s in \u001b[38;5;227mread_param.c\u001b[0;36m:\u001b[38;5;192mhash_set\u001b[0;36m:\u001b[0;32m43\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly allocated memory (32 bytes) at 0x55cb0820f170 for sigma8 in \u001b[38;5;227mread_param.c\u001b[0;36m:\u001b[38;5;192mhash_set\u001b[0;36m:\u001b[0;32m43\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly allocated memory (32 bytes) at 0x55cb0820f1c0 for w0_fld in \u001b[38;5;227mread_param.c\u001b[0;36m:\u001b[38;5;192mhash_set\u001b[0;36m:\u001b[0;32m43\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly allocated memory (32 bytes) at 0x55cb08252460 for wa_fld in \u001b[38;5;227mread_param.c\u001b[0;36m:\u001b[38;5;192mhash_set\u001b[0;36m:\u001b[0;32m43\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]==|\u001b[38;5;246mFound tag: 'SnapFormat'.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]==|\u001b[38;5;246mFound tag: 'NumFilesPerSnapshot'.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]==|\u001b[38;5;246mFound tag: 'ModuleLPT'.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]==|\u001b[38;5;246mFound tag: 'InputRngStateLPT'.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]==|\u001b[38;5;246mFound tag: 'OutputRngStateLPT'.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]==|\u001b[38;5;246mFound tag: 'Particles'.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]==|\u001b[38;5;246mFound tag: 'Mesh'.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]==|\u001b[38;5;246mFound tag: 'BoxSize'.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]==|\u001b[38;5;246mFound tag: 'corner0'.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]==|\u001b[38;5;246mFound tag: 'corner1'.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]==|\u001b[38;5;246mFound tag: 'corner2'.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]==|\u001b[38;5;246mFound tag: 'ICsMode'.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]==|\u001b[38;5;246mFound tag: 'WriteICsRngState'.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]==|\u001b[38;5;246mFound tag: 'OutputICsRngState'.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]==|\u001b[38;5;246mFound tag: 'WriteWhiteNoise'.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]==|\u001b[38;5;246mFound tag: 'OutputWhiteNoise'.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]==|\u001b[38;5;246mFound tag: 'InputWhiteNoise'.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]==|\u001b[38;5;246mFound tag: 'InputInitialConditions'.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]==|\u001b[38;5;246mFound tag: 'WriteInitialConditions'.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]==|\u001b[38;5;246mFound tag: 'OutputInitialConditions'.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]==|\u001b[38;5;246mFound tag: 'InputPowerSpectrum'.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]==|\u001b[38;5;246mFound tag: 'RedshiftLPT'.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]==|\u001b[38;5;246mFound tag: 'WriteLPTSnapshot'.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]==|\u001b[38;5;246mFound tag: 'OutputLPTSnapshot'.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]==|\u001b[38;5;246mFound tag: 'WriteLPTDensity'.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]==|\u001b[38;5;246mFound tag: 'OutputLPTDensity'.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]==|\u001b[38;5;246mFound tag: 'WriteLPTDisplacements'.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]==|\u001b[38;5;246mFound tag: 'OutputPsiLPT1'.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]==|\u001b[38;5;246mFound tag: 'OutputPsiLPT2'.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]==|\u001b[38;5;246mFound tag: 'ModulePMCOLA'.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]==|\u001b[38;5;246mFound tag: 'InputPMCOLASnapshot'.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]==|\u001b[38;5;246mFound tag: 'InputPsiLPT1'.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]==|\u001b[38;5;246mFound tag: 'InputPsiLPT2'.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]==|\u001b[38;5;246mFound tag: 'IsNonZeroInitialMomenta'.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]==|\u001b[38;5;246mFound tag: 'InputInitialMomenta'.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]==|\u001b[38;5;246mFound tag: 'EvolutionMode'.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]==|\u001b[38;5;246mFound tag: 'ParticleMesh'.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]==|\u001b[38;5;246mFound tag: 'TimeStepDistribution'.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]==|\u001b[38;5;246mFound tag: 'ModifiedDiscretization'.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]==|\u001b[38;5;246mFound tag: 'n_LPT'.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]==|\u001b[38;5;246mFound tag: 'WriteSnapshots'.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]==|\u001b[38;5;246mFound tag: 'OutputSnapshotsBase'.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]==|\u001b[38;5;246mFound tag: 'OutputSnapshotsExt'.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]==|\u001b[38;5;246mFound tag: 'WriteDensities'.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]==|\u001b[38;5;246mFound tag: 'OutputDensitiesBase'.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]==|\u001b[38;5;246mFound tag: 'OutputDensitiesExt'.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]==|\u001b[38;5;246mFound tag: 'RedshiftFCs'.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]==|\u001b[38;5;246mFound tag: 'WriteFinalSnapshot'.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]==|\u001b[38;5;246mFound tag: 'OutputFinalSnapshot'.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]==|\u001b[38;5;246mFound tag: 'WriteFinalDensity'.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]==|\u001b[38;5;246mFound tag: 'OutputFinalDensity'.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]==|\u001b[38;5;246mFound tag: 'WriteReferenceFrame'.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]==|\u001b[38;5;246mFound tag: 'OutputMomentaBase'.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]==|\u001b[38;5;246mFound tag: 'OutputMomentaExt'.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]==|\u001b[38;5;246mFound tag: 'ReadReferenceFrame'.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]==|\u001b[38;5;246mFound tag: 'InputMomentaBase'.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]==|\u001b[38;5;246mFound tag: 'InputMomentaExt'.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]==|\u001b[38;5;246mFound tag: 'NumberOfTilesPerDimension'.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]==|\u001b[38;5;246mFound tag: 'NumberOfParticlesInBuffer'.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]==|\u001b[38;5;246mFound tag: 'OutputLPTPotential1'.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]==|\u001b[38;5;246mFound tag: 'OutputLPTPotential2'.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]==|\u001b[38;5;246mFound tag: 'OutputTilesBase'.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]==|\u001b[38;5;246mFound tag: 'OutputTilesExt'.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]==|\u001b[38;5;246mFound tag: 'n_Tiles'.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]==|\u001b[38;5;246mFound tag: 'nPairsForceDiagnostic'.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]==|\u001b[38;5;246mFound tag: 'nBinsForceDiagnostic'.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]==|\u001b[38;5;246mFound tag: 'maxTrialsForceDiagnostic'.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]==|\u001b[38;5;246mFound tag: 'OutputForceDiagnostic'.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]==|\u001b[38;5;246mFound tag: 'RunForceDiagnostic'.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]==|\u001b[38;5;246mFound tag: 'ModuleRSD'.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]==|\u001b[38;5;246mFound tag: 'DoNonLinearMapping'.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]==|\u001b[38;5;246mFound tag: 'vobs0'.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]==|\u001b[38;5;246mFound tag: 'vobs1'.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]==|\u001b[38;5;246mFound tag: 'vobs2'.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]==|\u001b[38;5;246mFound tag: 'alpha1RSD'.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]==|\u001b[38;5;246mFound tag: 'DoLPTSplit'.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]==|\u001b[38;5;246mFound tag: 'alpha2RSD'.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]==|\u001b[38;5;246mFound tag: 'WriteRSSnapshot'.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]==|\u001b[38;5;246mFound tag: 'OutputRSSnapshot'.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]==|\u001b[38;5;246mFound tag: 'WriteRSDensity'.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]==|\u001b[38;5;246mFound tag: 'OutputRSDensity'.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]==|\u001b[38;5;246mFound tag: 'ModuleMocks'.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]==|\u001b[38;5;246mFound tag: 'InputRngStateMocks'.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]==|\u001b[38;5;246mFound tag: 'OutputRngStateMocks'.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]==|\u001b[38;5;246mFound tag: 'WriteMocksRngState'.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]==|\u001b[38;5;246mFound tag: 'OutputMocksRngState'.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]==|\u001b[38;5;246mFound tag: 'NoiseModel'.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]==|\u001b[38;5;246mFound tag: 'NumberOfNoiseRealizations'.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]==|\u001b[38;5;246mFound tag: 'InputDensityMocks'.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]==|\u001b[38;5;246mFound tag: 'InputSurveyGeometry'.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]==|\u001b[38;5;246mFound tag: 'InputSummaryStatskGrid'.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]==|\u001b[38;5;246mFound tag: 'WriteMocks'.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]==|\u001b[38;5;246mFound tag: 'OutputMockBase'.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]==|\u001b[38;5;246mFound tag: 'OutputMockExt'.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]==|\u001b[38;5;246mFound tag: 'WriteSummaryStats'.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]==|\u001b[38;5;246mFound tag: 'OutputSummaryStats'.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]==|\u001b[38;5;246mFound tag: 'h'.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]==|\u001b[38;5;246mFound tag: 'Omega_r'.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]==|\u001b[38;5;246mFound tag: 'Omega_q'.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]==|\u001b[38;5;246mFound tag: 'Omega_b'.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]==|\u001b[38;5;246mFound tag: 'Omega_m'.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]==|\u001b[38;5;246mFound tag: 'Omega_k'.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]==|\u001b[38;5;246mFound tag: 'n_s'.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]==|\u001b[38;5;246mFound tag: 'sigma8'.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]==|\u001b[38;5;246mFound tag: 'w0_fld'.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]==|\u001b[38;5;246mFound tag: 'wa_fld'.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]==|\u001b[38;5;246mReached the end of the parameter file.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb082213b0 for SnapFormat in \u001b[38;5;227mread_param.c\u001b[0;36m:\u001b[38;5;192mhash_unset\u001b[0;36m:\u001b[0;32m71\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08188330 for NumFilesPerSnapshot in \u001b[38;5;227mread_param.c\u001b[0;36m:\u001b[38;5;192mhash_unset\u001b[0;36m:\u001b[0;32m71\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08251be0 for ModuleLPT in \u001b[38;5;227mread_param.c\u001b[0;36m:\u001b[38;5;192mhash_unset\u001b[0;36m:\u001b[0;32m71\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb07a70820 for InputRngStateLPT in \u001b[38;5;227mread_param.c\u001b[0;36m:\u001b[38;5;192mhash_unset\u001b[0;36m:\u001b[0;32m71\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb07f72fa0 for OutputRngStateLPT in \u001b[38;5;227mread_param.c\u001b[0;36m:\u001b[38;5;192mhash_unset\u001b[0;36m:\u001b[0;32m71\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08183df0 for Particles in \u001b[38;5;227mread_param.c\u001b[0;36m:\u001b[38;5;192mhash_unset\u001b[0;36m:\u001b[0;32m71\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb080372f0 for Mesh in \u001b[38;5;227mread_param.c\u001b[0;36m:\u001b[38;5;192mhash_unset\u001b[0;36m:\u001b[0;32m71\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb07f6d1f0 for BoxSize in \u001b[38;5;227mread_param.c\u001b[0;36m:\u001b[38;5;192mhash_unset\u001b[0;36m:\u001b[0;32m71\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb084d4e60 for corner0 in \u001b[38;5;227mread_param.c\u001b[0;36m:\u001b[38;5;192mhash_unset\u001b[0;36m:\u001b[0;32m71\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08184340 for corner1 in \u001b[38;5;227mread_param.c\u001b[0;36m:\u001b[38;5;192mhash_unset\u001b[0;36m:\u001b[0;32m71\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08181f00 for corner2 in \u001b[38;5;227mread_param.c\u001b[0;36m:\u001b[38;5;192mhash_unset\u001b[0;36m:\u001b[0;32m71\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08251dd0 for ICsMode in \u001b[38;5;227mread_param.c\u001b[0;36m:\u001b[38;5;192mhash_unset\u001b[0;36m:\u001b[0;32m71\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb07f74740 for WriteICsRngState in \u001b[38;5;227mread_param.c\u001b[0;36m:\u001b[38;5;192mhash_unset\u001b[0;36m:\u001b[0;32m71\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb07fe0d70 for OutputICsRngState in \u001b[38;5;227mread_param.c\u001b[0;36m:\u001b[38;5;192mhash_unset\u001b[0;36m:\u001b[0;32m71\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0816e480 for WriteWhiteNoise in \u001b[38;5;227mread_param.c\u001b[0;36m:\u001b[38;5;192mhash_unset\u001b[0;36m:\u001b[0;32m71\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb07f719c0 for OutputWhiteNoise in \u001b[38;5;227mread_param.c\u001b[0;36m:\u001b[38;5;192mhash_unset\u001b[0;36m:\u001b[0;32m71\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb082508a0 for InputWhiteNoise in \u001b[38;5;227mread_param.c\u001b[0;36m:\u001b[38;5;192mhash_unset\u001b[0;36m:\u001b[0;32m71\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb07a23f30 for InputInitialConditions in \u001b[38;5;227mread_param.c\u001b[0;36m:\u001b[38;5;192mhash_unset\u001b[0;36m:\u001b[0;32m71\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb081843a0 for WriteInitialConditions in \u001b[38;5;227mread_param.c\u001b[0;36m:\u001b[38;5;192mhash_unset\u001b[0;36m:\u001b[0;32m71\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb081749d0 for OutputInitialConditions in \u001b[38;5;227mread_param.c\u001b[0;36m:\u001b[38;5;192mhash_unset\u001b[0;36m:\u001b[0;32m71\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb07a70ac0 for InputPowerSpectrum in \u001b[38;5;227mread_param.c\u001b[0;36m:\u001b[38;5;192mhash_unset\u001b[0;36m:\u001b[0;32m71\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb080b33a0 for RedshiftLPT in \u001b[38;5;227mread_param.c\u001b[0;36m:\u001b[38;5;192mhash_unset\u001b[0;36m:\u001b[0;32m71\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08200dd0 for WriteLPTSnapshot in \u001b[38;5;227mread_param.c\u001b[0;36m:\u001b[38;5;192mhash_unset\u001b[0;36m:\u001b[0;32m71\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb07f77ce0 for OutputLPTSnapshot in \u001b[38;5;227mread_param.c\u001b[0;36m:\u001b[38;5;192mhash_unset\u001b[0;36m:\u001b[0;32m71\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb081fabf0 for WriteLPTDensity in \u001b[38;5;227mread_param.c\u001b[0;36m:\u001b[38;5;192mhash_unset\u001b[0;36m:\u001b[0;32m71\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08207250 for OutputLPTDensity in \u001b[38;5;227mread_param.c\u001b[0;36m:\u001b[38;5;192mhash_unset\u001b[0;36m:\u001b[0;32m71\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb07839e20 for WriteLPTDisplacements in \u001b[38;5;227mread_param.c\u001b[0;36m:\u001b[38;5;192mhash_unset\u001b[0;36m:\u001b[0;32m71\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08206660 for OutputPsiLPT1 in \u001b[38;5;227mread_param.c\u001b[0;36m:\u001b[38;5;192mhash_unset\u001b[0;36m:\u001b[0;32m71\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08253d10 for OutputPsiLPT2 in \u001b[38;5;227mread_param.c\u001b[0;36m:\u001b[38;5;192mhash_unset\u001b[0;36m:\u001b[0;32m71\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0820c7f0 for ModulePMCOLA in \u001b[38;5;227mread_param.c\u001b[0;36m:\u001b[38;5;192mhash_unset\u001b[0;36m:\u001b[0;32m71\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb078da870 for InputPMCOLASnapshot in \u001b[38;5;227mread_param.c\u001b[0;36m:\u001b[38;5;192mhash_unset\u001b[0;36m:\u001b[0;32m71\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08252370 for InputPsiLPT1 in \u001b[38;5;227mread_param.c\u001b[0;36m:\u001b[38;5;192mhash_unset\u001b[0;36m:\u001b[0;32m71\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08263760 for InputPsiLPT2 in \u001b[38;5;227mread_param.c\u001b[0;36m:\u001b[38;5;192mhash_unset\u001b[0;36m:\u001b[0;32m71\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb082060c0 for IsNonZeroInitialMomenta in \u001b[38;5;227mread_param.c\u001b[0;36m:\u001b[38;5;192mhash_unset\u001b[0;36m:\u001b[0;32m71\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08251cc0 for InputInitialMomenta in \u001b[38;5;227mread_param.c\u001b[0;36m:\u001b[38;5;192mhash_unset\u001b[0;36m:\u001b[0;32m71\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08251cf0 for EvolutionMode in \u001b[38;5;227mread_param.c\u001b[0;36m:\u001b[38;5;192mhash_unset\u001b[0;36m:\u001b[0;32m71\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08184000 for ParticleMesh in \u001b[38;5;227mread_param.c\u001b[0;36m:\u001b[38;5;192mhash_unset\u001b[0;36m:\u001b[0;32m71\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb07a708f0 for TimeStepDistribution in \u001b[38;5;227mread_param.c\u001b[0;36m:\u001b[38;5;192mhash_unset\u001b[0;36m:\u001b[0;32m71\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0825f680 for ModifiedDiscretization in \u001b[38;5;227mread_param.c\u001b[0;36m:\u001b[38;5;192mhash_unset\u001b[0;36m:\u001b[0;32m71\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08209960 for n_LPT in \u001b[38;5;227mread_param.c\u001b[0;36m:\u001b[38;5;192mhash_unset\u001b[0;36m:\u001b[0;32m71\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb081fe5b0 for n_Tiles in \u001b[38;5;227mread_param.c\u001b[0;36m:\u001b[38;5;192mhash_unset\u001b[0;36m:\u001b[0;32m71\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08251b20 for nPairsForceDiagnostic in \u001b[38;5;227mread_param.c\u001b[0;36m:\u001b[38;5;192mhash_unset\u001b[0;36m:\u001b[0;32m71\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08262b60 for nBinsForceDiagnostic in \u001b[38;5;227mread_param.c\u001b[0;36m:\u001b[38;5;192mhash_unset\u001b[0;36m:\u001b[0;32m71\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0825f7d0 for maxTrialsForceDiagnostic in \u001b[38;5;227mread_param.c\u001b[0;36m:\u001b[38;5;192mhash_unset\u001b[0;36m:\u001b[0;32m71\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08253d90 for OutputForceDiagnostic in \u001b[38;5;227mread_param.c\u001b[0;36m:\u001b[38;5;192mhash_unset\u001b[0;36m:\u001b[0;32m71\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08211f90 for RunForceDiagnostic in \u001b[38;5;227mread_param.c\u001b[0;36m:\u001b[38;5;192mhash_unset\u001b[0;36m:\u001b[0;32m71\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08182b50 for WriteSnapshots in \u001b[38;5;227mread_param.c\u001b[0;36m:\u001b[38;5;192mhash_unset\u001b[0;36m:\u001b[0;32m71\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08181fa0 for OutputSnapshotsBase in \u001b[38;5;227mread_param.c\u001b[0;36m:\u001b[38;5;192mhash_unset\u001b[0;36m:\u001b[0;32m71\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08254500 for OutputSnapshotsExt in \u001b[38;5;227mread_param.c\u001b[0;36m:\u001b[38;5;192mhash_unset\u001b[0;36m:\u001b[0;32m71\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08254530 for WriteDensities in \u001b[38;5;227mread_param.c\u001b[0;36m:\u001b[38;5;192mhash_unset\u001b[0;36m:\u001b[0;32m71\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0825f4f0 for OutputDensitiesBase in \u001b[38;5;227mread_param.c\u001b[0;36m:\u001b[38;5;192mhash_unset\u001b[0;36m:\u001b[0;32m71\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb082116a0 for OutputDensitiesExt in \u001b[38;5;227mread_param.c\u001b[0;36m:\u001b[38;5;192mhash_unset\u001b[0;36m:\u001b[0;32m71\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08257cf0 for RedshiftFCs in \u001b[38;5;227mread_param.c\u001b[0;36m:\u001b[38;5;192mhash_unset\u001b[0;36m:\u001b[0;32m71\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08257d20 for WriteFinalSnapshot in \u001b[38;5;227mread_param.c\u001b[0;36m:\u001b[38;5;192mhash_unset\u001b[0;36m:\u001b[0;32m71\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08041300 for OutputFinalSnapshot in \u001b[38;5;227mread_param.c\u001b[0;36m:\u001b[38;5;192mhash_unset\u001b[0;36m:\u001b[0;32m71\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08041350 for WriteFinalDensity in \u001b[38;5;227mread_param.c\u001b[0;36m:\u001b[38;5;192mhash_unset\u001b[0;36m:\u001b[0;32m71\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08208880 for OutputFinalDensity in \u001b[38;5;227mread_param.c\u001b[0;36m:\u001b[38;5;192mhash_unset\u001b[0;36m:\u001b[0;32m71\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb082164f0 for WriteReferenceFrame in \u001b[38;5;227mread_param.c\u001b[0;36m:\u001b[38;5;192mhash_unset\u001b[0;36m:\u001b[0;32m71\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08216540 for OutputMomentaBase in \u001b[38;5;227mread_param.c\u001b[0;36m:\u001b[38;5;192mhash_unset\u001b[0;36m:\u001b[0;32m71\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb081827a0 for OutputMomentaExt in \u001b[38;5;227mread_param.c\u001b[0;36m:\u001b[38;5;192mhash_unset\u001b[0;36m:\u001b[0;32m71\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb07c35590 for ReadReferenceFrame in \u001b[38;5;227mread_param.c\u001b[0;36m:\u001b[38;5;192mhash_unset\u001b[0;36m:\u001b[0;32m71\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb07c355e0 for InputMomentaBase in \u001b[38;5;227mread_param.c\u001b[0;36m:\u001b[38;5;192mhash_unset\u001b[0;36m:\u001b[0;32m71\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb084dcb80 for InputMomentaExt in \u001b[38;5;227mread_param.c\u001b[0;36m:\u001b[38;5;192mhash_unset\u001b[0;36m:\u001b[0;32m71\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0820ce00 for NumberOfTilesPerDimension in \u001b[38;5;227mread_param.c\u001b[0;36m:\u001b[38;5;192mhash_unset\u001b[0;36m:\u001b[0;32m71\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0820ce60 for NumberOfParticlesInBuffer in \u001b[38;5;227mread_param.c\u001b[0;36m:\u001b[38;5;192mhash_unset\u001b[0;36m:\u001b[0;32m71\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0825c3a0 for OutputLPTPotential1 in \u001b[38;5;227mread_param.c\u001b[0;36m:\u001b[38;5;192mhash_unset\u001b[0;36m:\u001b[0;32m71\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08219d60 for OutputLPTPotential2 in \u001b[38;5;227mread_param.c\u001b[0;36m:\u001b[38;5;192mhash_unset\u001b[0;36m:\u001b[0;32m71\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08219db0 for OutputTilesBase in \u001b[38;5;227mread_param.c\u001b[0;36m:\u001b[38;5;192mhash_unset\u001b[0;36m:\u001b[0;32m71\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08254290 for OutputTilesExt in \u001b[38;5;227mread_param.c\u001b[0;36m:\u001b[38;5;192mhash_unset\u001b[0;36m:\u001b[0;32m71\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08207450 for ModuleRSD in \u001b[38;5;227mread_param.c\u001b[0;36m:\u001b[38;5;192mhash_unset\u001b[0;36m:\u001b[0;32m71\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08207480 for DoNonLinearMapping in \u001b[38;5;227mread_param.c\u001b[0;36m:\u001b[38;5;192mhash_unset\u001b[0;36m:\u001b[0;32m71\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0820cae0 for vobs0 in \u001b[38;5;227mread_param.c\u001b[0;36m:\u001b[38;5;192mhash_unset\u001b[0;36m:\u001b[0;32m71\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0820cb30 for vobs1 in \u001b[38;5;227mread_param.c\u001b[0;36m:\u001b[38;5;192mhash_unset\u001b[0;36m:\u001b[0;32m71\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb081f9a60 for vobs2 in \u001b[38;5;227mread_param.c\u001b[0;36m:\u001b[38;5;192mhash_unset\u001b[0;36m:\u001b[0;32m71\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08252120 for alpha1RSD in \u001b[38;5;227mread_param.c\u001b[0;36m:\u001b[38;5;192mhash_unset\u001b[0;36m:\u001b[0;32m71\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08252150 for DoLPTSplit in \u001b[38;5;227mread_param.c\u001b[0;36m:\u001b[38;5;192mhash_unset\u001b[0;36m:\u001b[0;32m71\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08182900 for alpha2RSD in \u001b[38;5;227mread_param.c\u001b[0;36m:\u001b[38;5;192mhash_unset\u001b[0;36m:\u001b[0;32m71\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08182930 for WriteRSSnapshot in \u001b[38;5;227mread_param.c\u001b[0;36m:\u001b[38;5;192mhash_unset\u001b[0;36m:\u001b[0;32m71\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0821a0b0 for OutputRSSnapshot in \u001b[38;5;227mread_param.c\u001b[0;36m:\u001b[38;5;192mhash_unset\u001b[0;36m:\u001b[0;32m71\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0821a0e0 for WriteRSDensity in \u001b[38;5;227mread_param.c\u001b[0;36m:\u001b[38;5;192mhash_unset\u001b[0;36m:\u001b[0;32m71\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08201590 for OutputRSDensity in \u001b[38;5;227mread_param.c\u001b[0;36m:\u001b[38;5;192mhash_unset\u001b[0;36m:\u001b[0;32m71\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb082015c0 for ModuleMocks in \u001b[38;5;227mread_param.c\u001b[0;36m:\u001b[38;5;192mhash_unset\u001b[0;36m:\u001b[0;32m71\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0821ab10 for InputRngStateMocks in \u001b[38;5;227mread_param.c\u001b[0;36m:\u001b[38;5;192mhash_unset\u001b[0;36m:\u001b[0;32m71\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0821ab40 for OutputRngStateMocks in \u001b[38;5;227mread_param.c\u001b[0;36m:\u001b[38;5;192mhash_unset\u001b[0;36m:\u001b[0;32m71\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb07d58f50 for WriteMocksRngState in \u001b[38;5;227mread_param.c\u001b[0;36m:\u001b[38;5;192mhash_unset\u001b[0;36m:\u001b[0;32m71\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb07d58f80 for OutputMocksRngState in \u001b[38;5;227mread_param.c\u001b[0;36m:\u001b[38;5;192mhash_unset\u001b[0;36m:\u001b[0;32m71\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb07d58fd0 for NoiseModel in \u001b[38;5;227mread_param.c\u001b[0;36m:\u001b[38;5;192mhash_unset\u001b[0;36m:\u001b[0;32m71\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08130020 for NumberOfNoiseRealizations in \u001b[38;5;227mread_param.c\u001b[0;36m:\u001b[38;5;192mhash_unset\u001b[0;36m:\u001b[0;32m71\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08130080 for InputDensityMocks in \u001b[38;5;227mread_param.c\u001b[0;36m:\u001b[38;5;192mhash_unset\u001b[0;36m:\u001b[0;32m71\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0812bd70 for InputSurveyGeometry in \u001b[38;5;227mread_param.c\u001b[0;36m:\u001b[38;5;192mhash_unset\u001b[0;36m:\u001b[0;32m71\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0812bdc0 for InputSummaryStatskGrid in \u001b[38;5;227mread_param.c\u001b[0;36m:\u001b[38;5;192mhash_unset\u001b[0;36m:\u001b[0;32m71\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb06b46970 for WriteMocks in \u001b[38;5;227mread_param.c\u001b[0;36m:\u001b[38;5;192mhash_unset\u001b[0;36m:\u001b[0;32m71\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb06b469c0 for OutputMockBase in \u001b[38;5;227mread_param.c\u001b[0;36m:\u001b[38;5;192mhash_unset\u001b[0;36m:\u001b[0;32m71\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0792fb70 for OutputMockExt in \u001b[38;5;227mread_param.c\u001b[0;36m:\u001b[38;5;192mhash_unset\u001b[0;36m:\u001b[0;32m71\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0792fbc0 for WriteSummaryStats in \u001b[38;5;227mread_param.c\u001b[0;36m:\u001b[38;5;192mhash_unset\u001b[0;36m:\u001b[0;32m71\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08212520 for OutputSummaryStats in \u001b[38;5;227mread_param.c\u001b[0;36m:\u001b[38;5;192mhash_unset\u001b[0;36m:\u001b[0;32m71\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08212570 for h in \u001b[38;5;227mread_param.c\u001b[0;36m:\u001b[38;5;192mhash_unset\u001b[0;36m:\u001b[0;32m71\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb06c61ac0 for Omega_r in \u001b[38;5;227mread_param.c\u001b[0;36m:\u001b[38;5;192mhash_unset\u001b[0;36m:\u001b[0;32m71\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb06c61b10 for Omega_q in \u001b[38;5;227mread_param.c\u001b[0;36m:\u001b[38;5;192mhash_unset\u001b[0;36m:\u001b[0;32m71\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb07916830 for Omega_b in \u001b[38;5;227mread_param.c\u001b[0;36m:\u001b[38;5;192mhash_unset\u001b[0;36m:\u001b[0;32m71\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb07916880 for Omega_m in \u001b[38;5;227mread_param.c\u001b[0;36m:\u001b[38;5;192mhash_unset\u001b[0;36m:\u001b[0;32m71\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0812d6f0 for Omega_k in \u001b[38;5;227mread_param.c\u001b[0;36m:\u001b[38;5;192mhash_unset\u001b[0;36m:\u001b[0;32m71\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0812d740 for n_s in \u001b[38;5;227mread_param.c\u001b[0;36m:\u001b[38;5;192mhash_unset\u001b[0;36m:\u001b[0;32m71\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0820f170 for sigma8 in \u001b[38;5;227mread_param.c\u001b[0;36m:\u001b[38;5;192mhash_unset\u001b[0;36m:\u001b[0;32m71\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0820f1c0 for w0_fld in \u001b[38;5;227mread_param.c\u001b[0;36m:\u001b[38;5;192mhash_unset\u001b[0;36m:\u001b[0;32m71\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08252460 for wa_fld in \u001b[38;5;227mread_param.c\u001b[0;36m:\u001b[38;5;192mhash_unset\u001b[0;36m:\u001b[0;32m71\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08575200 for hashtab in \u001b[38;5;227mread_param.c\u001b[0;36m:\u001b[38;5;192mread_parameterfile\u001b[0;36m:\u001b[0;32m907\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]|Reading parameter file in '/home/hoellinger/wip3m/results/forcediag1/example_lpt.sbmy' done.\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]|\u001b[38;5;246mCorrectly allocated memory (786432 bytes) at 0x55cb08575200 for PsiLPT in \u001b[38;5;227mmain.c\u001b[0;36m:\u001b[38;5;192mmain_sbmy\u001b[0;36m:\u001b[0;32m110\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb08635210 for FCs_field.data in \u001b[38;5;227mmain.c\u001b[0;36m:\u001b[38;5;192mmain_sbmy\u001b[0;36m:\u001b[0;32m115\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;147mMODULE \u001b[00m]|\u001b[38;5;147mModuleLPT: Initializing snapshot...\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly allocated memory (393216 bytes) at 0x55cb086a11f0 for P.positions in \u001b[38;5;227msnapshot.c\u001b[0;36m:\u001b[38;5;192mreturn_grid_snapshot_DM\u001b[0;36m:\u001b[0;32m169\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly allocated memory (393216 bytes) at 0x55cb08701200 for P.velocities in \u001b[38;5;227msnapshot.c\u001b[0;36m:\u001b[38;5;192mreturn_grid_snapshot_DM\u001b[0;36m:\u001b[0;32m169\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb08655220 for P.ids in \u001b[38;5;227msnapshot.c\u001b[0;36m:\u001b[38;5;192mreturn_grid_snapshot_DM\u001b[0;36m:\u001b[0;32m169\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;147mMODULE \u001b[00m]|\u001b[38;5;147mModuleLPT: Initializing snapshot done.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;159mTIMER \u001b[00m]|LPT snapshot initialization: 0.372 CPU - 0.013 wallclock seconds used.\n",
"[02:24:16\u001b[00m|\u001b[38;5;147mMODULE \u001b[00m]|\u001b[38;5;147mModuleLPT: Returning initial conditions...\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]==|Reading field in '/data70/hoellinger/WIP3M/forcediag1/input_white_noise.h5'...\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb087f5810 for WN_field.data in \u001b[38;5;227mlpt.c\u001b[0;36m:\u001b[38;5;192mget_initial_conditions\u001b[0;36m:\u001b[0;32m86\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]==|Reading field in '/data70/hoellinger/WIP3M/forcediag1/input_white_noise.h5' done.\n",
"[02:24:16\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]==|Reading power spectrum...\n",
"[02:24:16\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]====|Reading power spectrum in '/data70/hoellinger/WIP3M/forcediag1/input_power.h5'...\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]====|\u001b[38;5;246mCorrectly allocated memory (69632 bytes) at 0x55cb08823ab0 for Pk.k_keys in \u001b[38;5;227mpower.c\u001b[0;36m:\u001b[38;5;192minitialize_power_spectrum\u001b[0;36m:\u001b[0;32m403\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]====|\u001b[38;5;246mCorrectly allocated memory (1856 bytes) at 0x55cb08834ac0 for Pk.k_modes in \u001b[38;5;227mpower.c\u001b[0;36m:\u001b[38;5;192minitialize_power_spectrum\u001b[0;36m:\u001b[0;32m403\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]====|\u001b[38;5;246mCorrectly allocated memory (1856 bytes) at 0x55cb08835210 for Pk.k_nmodes in \u001b[38;5;227mpower.c\u001b[0;36m:\u001b[38;5;192minitialize_power_spectrum\u001b[0;36m:\u001b[0;32m403\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]====|\u001b[38;5;246mCorrectly allocated memory (1856 bytes) at 0x55cb08835960 for Pk.powerspectrum in \u001b[38;5;227mpower.c\u001b[0;36m:\u001b[38;5;192minitialize_power_spectrum\u001b[0;36m:\u001b[0;32m403\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]====|Reading power spectrum in '/data70/hoellinger/WIP3M/forcediag1/input_power.h5' done.\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]======|\u001b[38;5;246mPk.NUM_MODES=464\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]======|\u001b[38;5;246mPk.N_HC=17408\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]======|\u001b[38;5;246mPk.k_modes=[0 0.0981748 0.13884 0.170044 0.19635 0.219525 0.240478 0.27768 0.294524 0.310456 0.325609 0.340087 0.353974 0.367336 0.392699 0.404785 0.41652 0.427934 0.439051 0.449893 0.46048 0.480956 0.490874 0.500595 0.510131 0.528687 0.537725 0.55536 0.563971 0.572452 0.58081 0.589049 0.597174 0.60519 0.620912 0.628625 0.636245 0.643775 0.651218 0.658576 0.665854 0.680175 0.687223 0.6942 0.701108 0.707948 0.714723 0.721434 0.734673 0.741203 0.747677 0.754095 0.766769 0.773029 0.785398 0.79151 0.797576 0.803595 0.80957 0.815501 0.821389 0.833041 0.838806 0.844531 0.850218 0.855868 0.86148 0.867056 0.878102 0.883573 0.88901 0.894415 0.899787 0.905127 0.910435 0.920961 0.926179 0.931368 0.936528 0.946763 0.95184 0.961912 0.966909 0.971881 0.976827 0.981748 0.986644 0.991517 1.00119 1.00599 1.01077 1.01553 1.02026 1.02497 1.02967 1.04361 1.04822 1.05281 1.05737 1.06192 ...]\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]======|\u001b[38;5;246mPk.k_nmodes=[1 5 8 4 5 16 12 8 17 16 12 4 16 24 5 28 20 12 16 24 12 12 21 40 16 40 24 8 24 28 24 17 16 36 16 52 24 12 12 40 24 4 29 48 24 16 40 48 24 24 16 36 40 48 5 56 48 12 28 48 24 20 28 64 28 12 48 24 16 53 28 36 24 32 60 12 76 64 24 24 48 12 28 56 36 21 88 24 40 48 40 36 16 40 72 52 48 24 40 64 ...]\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]======|\u001b[38;5;246mPk.k_keys=[0 1 4 8 14 22 31 42 54 69 85 102 121 142 165 189 214 1 2 5 9 15 23 32 43 55 70 86 103 122 143 166 190 215 4 5 7 12 18 25 34 46 58 73 88 105 125 146 168 193 218 8 9 12 16 22 29 39 50 62 77 93 109 129 150 173 197 222 14 15 18 22 27 35 45 55 68 82 98 115 134 156 179 202 228 22 23 25 29 35 43 52 63 76 90 105 123 142 163 186 ...]\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]======|\u001b[38;5;246mPk.powerspectrum=[0 5796.48 3666.03 2414.85 1991.67 1572.7 1325.47 1016.18 898.654 818.986 747.885 680.91 626.02 582.717 509.505 477.412 449.66 425.653 404.027 383.937 365.315 333.056 319.136 306.261 294.217 272.437 262.691 245.172 237.207 229.683 222.57 215.855 209.52 203.54 192.511 187.399 182.524 177.875 173.441 169.213 165.178 157.632 154.094 150.697 147.434 144.298 141.284 138.387 132.917 130.332 127.838 125.429 120.852 118.677 114.539 112.571 110.665 108.818 107.027 105.288 103.601 100.37 98.8238 97.3214 95.8612 94.4414 93.0602 91.7158 89.1307 87.8873 86.6752 85.4934 84.3411 83.2173 82.1211 80.0076 78.9882 77.9923 77.019 75.1373 74.2275 72.4675 71.6162 70.7833 69.9683 69.1705 68.3892 67.624 66.1394 65.4191 64.7129 64.0205 63.3416 62.6758 62.0229 60.1379 59.5328 58.9388 58.3554 57.7825 ...]\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]==|Reading power spectrum done.\n",
"[02:24:16\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]==|Generating Gaussian random field (using 32 cores)...\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]====|\u001b[38;5;246mCorrectly allocated memory (139264 bytes) at 0x55cb08772540 for AUX in \u001b[38;5;227mgrf.c\u001b[0;36m:\u001b[38;5;192mtint_or_whiten_GRF\u001b[0;36m:\u001b[0;32m205\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]====|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08772540 for AUX in \u001b[38;5;227mgrf.c\u001b[0;36m:\u001b[38;5;192mtint_or_whiten_GRF\u001b[0;36m:\u001b[0;32m250\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]==|Generating Gaussian random field (using 32 cores) done.\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08834ac0 for Pk.k_modes in \u001b[38;5;227mlpt.c\u001b[0;36m:\u001b[38;5;192mget_initial_conditions\u001b[0;36m:\u001b[0;32m116\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08835210 for Pk.k_nmodes in \u001b[38;5;227mlpt.c\u001b[0;36m:\u001b[38;5;192mget_initial_conditions\u001b[0;36m:\u001b[0;32m116\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08823ab0 for Pk.k_keys in \u001b[38;5;227mlpt.c\u001b[0;36m:\u001b[38;5;192mget_initial_conditions\u001b[0;36m:\u001b[0;32m116\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08835960 for Pk.powerspectrum in \u001b[38;5;227mlpt.c\u001b[0;36m:\u001b[38;5;192mget_initial_conditions\u001b[0;36m:\u001b[0;32m116\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]==|Writing field to '/data70/hoellinger/WIP3M/forcediag1/initial_density.h5'...\n",
"[02:24:16\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]==|Writing field to '/data70/hoellinger/WIP3M/forcediag1/initial_density.h5' done.\n",
"[02:24:16\u001b[00m|\u001b[38;5;147mMODULE \u001b[00m]|\u001b[38;5;147mModuleLPT: Returning initial conditions done.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;159mTIMER \u001b[00m]|LPT initial conditions: 0.941 CPU - 0.040 wallclock seconds used.\n",
"[02:24:16\u001b[00m|\u001b[38;5;147mMODULE \u001b[00m]|\u001b[38;5;147mModuleLPT: Evolving with Lagrangian perturbation theory (using 32 cores)...\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb087d1430 for phi1 in \u001b[38;5;227mlpt.c\u001b[0;36m:\u001b[38;5;192mevolve_lpt\u001b[0;36m:\u001b[0;32m604\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb08772540 for phi2 in \u001b[38;5;227mlpt.c\u001b[0;36m:\u001b[38;5;192mevolve_lpt\u001b[0;36m:\u001b[0;32m606\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]==|Computing Lagrangian potentials, periodic boundary conditions (using 32 cores)...\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]====|\u001b[38;5;246mCorrectly allocated memory (139264 bytes) at 0x55cb0883bf60 for phi1_fs in \u001b[38;5;227mlpt.c\u001b[0;36m:\u001b[38;5;192mget_potentials_periodic\u001b[0;36m:\u001b[0;32m199\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]====|\u001b[38;5;246mCorrectly allocated memory (139264 bytes) at 0x55cb0885df70 for AUX in \u001b[38;5;227mlpt.c\u001b[0;36m:\u001b[38;5;192mget_potentials_periodic\u001b[0;36m:\u001b[0;32m200\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]====|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0885df70 for AUX in \u001b[38;5;227mlpt.c\u001b[0;36m:\u001b[38;5;192mget_potentials_periodic\u001b[0;36m:\u001b[0;32m223\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]======|\u001b[38;5;246mphi1=[47.2319 42.3787 36.3836 37.672 38.2979 38.5121 41.9472 43.9162 40.5739 30.8487 23.2239 12.8938 0.107064 -8.6725 -21.8996 -26.0947 -26.4535 -26.2548 -26.8737 -25.5193 -23.6712 -20.9114 -17.9755 -7.39222 1.26319 11.1909 16.2126 23.079 31.2159 38.3702 46.8912 48.7634 56.4322 48.2668 40.5232 38.0133 39.9278 39.5403 39.5883 41.2595 37.2127 36.0914 27.0051 15.3204 4.09597 -3.54301 -13.9048 -19.8965 -22.8311 -26.7959 -28.2151 -28.9148 -28.3291 -25.9206 -21.1365 -9.86366 1.27518 13.8106 22.3625 29.5885 41.8275 49.639 55.1122 56.8693 57.7936 51.0163 43.2442 41.8046 43.1511 44.8754 44.6807 41.3538 36.6969 38.8021 32.4499 22.7567 11.4102 2.46955 -8.27795 -14.5797 -17.6189 -20.2041 -23.9175 -24.3429 -24.6511 -23.5456 -18.7415 -9.72544 3.24699 13.1879 24.1942 34.1379 47.8955 56.5114 59.2315 59.8578 53.0035 48.6978 46.9915 49.2617 ...]\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]====|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0885df70 for PHI00 in \u001b[38;5;227mlpt.c\u001b[0;36m:\u001b[38;5;192mget_potentials_periodic\u001b[0;36m:\u001b[0;32m233\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]====|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0887df80 for PHI11 in \u001b[38;5;227mlpt.c\u001b[0;36m:\u001b[38;5;192mget_potentials_periodic\u001b[0;36m:\u001b[0;32m234\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]====|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0889df90 for PHI22 in \u001b[38;5;227mlpt.c\u001b[0;36m:\u001b[38;5;192mget_potentials_periodic\u001b[0;36m:\u001b[0;32m235\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]====|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb088bdfa0 for PHI01 in \u001b[38;5;227mlpt.c\u001b[0;36m:\u001b[38;5;192mget_potentials_periodic\u001b[0;36m:\u001b[0;32m236\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]====|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb088ddfb0 for PHI02 in \u001b[38;5;227mlpt.c\u001b[0;36m:\u001b[38;5;192mget_potentials_periodic\u001b[0;36m:\u001b[0;32m237\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]====|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0895b150 for PHI12 in \u001b[38;5;227mlpt.c\u001b[0;36m:\u001b[38;5;192mget_potentials_periodic\u001b[0;36m:\u001b[0;32m238\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]====|\u001b[38;5;246mCorrectly allocated memory (139264 bytes) at 0x55cb0897b160 for AUX in \u001b[38;5;227mpoisson_solvers.c\u001b[0;36m:\u001b[38;5;192mget_2ndderivative_potential_rs_DFT\u001b[0;36m:\u001b[0;32m169\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]====|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0897b160 for AUX in \u001b[38;5;227mpoisson_solvers.c\u001b[0;36m:\u001b[38;5;192mget_2ndderivative_potential_rs_DFT\u001b[0;36m:\u001b[0;32m187\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]====|\u001b[38;5;246mCorrectly allocated memory (139264 bytes) at 0x55cb0897b160 for AUX in \u001b[38;5;227mpoisson_solvers.c\u001b[0;36m:\u001b[38;5;192mget_2ndderivative_potential_rs_DFT\u001b[0;36m:\u001b[0;32m169\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]====|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0897b160 for AUX in \u001b[38;5;227mpoisson_solvers.c\u001b[0;36m:\u001b[38;5;192mget_2ndderivative_potential_rs_DFT\u001b[0;36m:\u001b[0;32m187\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]====|\u001b[38;5;246mCorrectly allocated memory (139264 bytes) at 0x55cb0897b160 for AUX in \u001b[38;5;227mpoisson_solvers.c\u001b[0;36m:\u001b[38;5;192mget_2ndderivative_potential_rs_DFT\u001b[0;36m:\u001b[0;32m169\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]====|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0897b160 for AUX in \u001b[38;5;227mpoisson_solvers.c\u001b[0;36m:\u001b[38;5;192mget_2ndderivative_potential_rs_DFT\u001b[0;36m:\u001b[0;32m187\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]====|\u001b[38;5;246mCorrectly allocated memory (139264 bytes) at 0x55cb0897b160 for AUX in \u001b[38;5;227mpoisson_solvers.c\u001b[0;36m:\u001b[38;5;192mget_2ndderivative_potential_rs_DFT\u001b[0;36m:\u001b[0;32m169\u001b[00m\u001b[38;5;246m.\u001b[00m\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"HDF5-DIAG: Error detected in HDF5 (1.10.5) thread 0:\n",
" #000: ../../src/H5Adeprec.c line 202 in H5Aopen_name(): can't open attribute: '/info/scalars/time'\n",
" major: Attribute\n",
" minor: Can't open object\n",
" #001: ../../src/H5Aint.c line 557 in H5A__open_by_name(): unable to load attribute info from object header\n",
" major: Attribute\n",
" minor: Unable to initialize object\n",
" #002: ../../src/H5Oattribute.c line 515 in H5O__attr_open_by_name(): can't locate attribute: '/info/scalars/time'\n",
" major: Attribute\n",
" minor: Object not found\n",
"HDF5-DIAG: Error detected in HDF5 (1.10.5) thread 0:\n",
" #000: ../../src/H5A.c line 662 in H5Aread(): not an attribute\n",
" major: Invalid arguments to routine\n",
" minor: Inappropriate type\n",
"HDF5-DIAG: Error detected in HDF5 (1.10.5) thread 0:\n",
" #000: ../../src/H5A.c line 1523 in H5Aclose(): not an attribute\n",
" major: Invalid arguments to routine\n",
" minor: Inappropriate type\n"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"[02:24:16\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]====|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0897b160 for AUX in \u001b[38;5;227mpoisson_solvers.c\u001b[0;36m:\u001b[38;5;192mget_2ndderivative_potential_rs_DFT\u001b[0;36m:\u001b[0;32m187\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]====|\u001b[38;5;246mCorrectly allocated memory (139264 bytes) at 0x55cb0897b160 for AUX in \u001b[38;5;227mpoisson_solvers.c\u001b[0;36m:\u001b[38;5;192mget_2ndderivative_potential_rs_DFT\u001b[0;36m:\u001b[0;32m169\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]====|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0897b160 for AUX in \u001b[38;5;227mpoisson_solvers.c\u001b[0;36m:\u001b[38;5;192mget_2ndderivative_potential_rs_DFT\u001b[0;36m:\u001b[0;32m187\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]====|\u001b[38;5;246mCorrectly allocated memory (139264 bytes) at 0x55cb0897b160 for AUX in \u001b[38;5;227mpoisson_solvers.c\u001b[0;36m:\u001b[38;5;192mget_2ndderivative_potential_rs_DFT\u001b[0;36m:\u001b[0;32m169\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]====|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0897b160 for AUX in \u001b[38;5;227mpoisson_solvers.c\u001b[0;36m:\u001b[38;5;192mget_2ndderivative_potential_rs_DFT\u001b[0;36m:\u001b[0;32m187\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]====|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0883bf60 for phi1_fs in \u001b[38;5;227mlpt.c\u001b[0;36m:\u001b[38;5;192mget_potentials_periodic\u001b[0;36m:\u001b[0;32m288\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]======|\u001b[38;5;246mPHI00=[-0.784269 -0.29015 0.567948 0.425166 0.667769 0.734648 0.0534074 -0.169362 0.161651 0.642128 0.885179 0.53844 0.483512 0.248178 0.823048 0.681005 0.868152 0.913395 0.823481 0.616244 0.48264 0.337299 0.498298 0.0707091 0.0463234 -0.110028 0.0712752 -0.140816 -0.721263 -1.05918 -1.39015 -1.14429 -0.751543 -0.0901751 0.553619 0.700669 0.645672 0.65837 0.199223 0.217587 0.762528 0.458159 0.998539 1.04355 0.874396 0.151068 0.149625 0.131951 0.508045 1.25806 1.13241 1.07781 0.833887 0.699478 0.426476 -0.0381416 0.0288815 -0.302053 -0.288625 -0.137748 -0.71982 -1.17861 -1.03943 -0.808395 -0.423617 0.0309392 0.594642 0.664679 0.223485 0.00752389 0.00234774 0.336849 0.899745 0.667219 1.16037 1.07108 0.887593 -0.0355211 -0.12671 0.0415321 0.352329 0.910195 1.17971 0.814864 0.544931 0.431617 0.365001 0.286053 0.131754 0.333694 0.485301 0.266144 -0.31801 -0.831861 -0.704757 -0.458555 -0.0968574 0.228758 0.37909 0.121016 ...]\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]======|\u001b[38;5;246mPHI11=[-1.33963 -0.991921 -0.551232 -0.54796 -0.287175 0.0569453 0.0605424 -0.206748 -0.270574 0.319115 0.127777 0.305461 0.446325 0.365932 0.721861 0.575778 0.632993 0.411273 0.403021 0.624863 0.710258 0.714543 0.407548 -0.0228347 0.123268 -0.396033 -0.295966 -0.379989 -0.409061 -0.276913 -0.99711 -1.22535 -1.70161 -1.01369 -0.359579 0.242752 0.310821 0.565025 0.813905 0.414875 0.285013 -0.211964 0.073071 0.242155 0.311815 -0.00973761 -0.0857236 0.0919562 0.340532 0.802365 0.9279 1.2744 1.3037 1.43673 0.963967 0.684595 0.582862 0.0870358 -0.179192 -0.285564 -0.841147 -1.04394 -1.21913 -1.36149 -1.24058 -1 -0.0469093 0.291121 0.0307971 -0.2598 -0.0738761 0.0734288 0.265944 -0.901634 -0.750186 -0.496936 -0.0644205 -0.167807 -0.610556 -0.606331 -0.160626 -0.0976117 0.11838 0.447318 0.703836 0.975916 0.849195 1.27659 1.04824 0.989731 0.383562 -0.0320472 -0.815267 -1.20498 -1.04799 -1.14387 -0.506839 -0.620764 -0.593896 -0.747759 ...]\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]======|\u001b[38;5;246mPHI22=[-0.699312 0.104874 0.797659 0.34668 0.108443 0.285242 -0.313914 -1.15447 -0.998549 -0.305467 -0.360422 -0.22571 0.0693843 0.259003 1.0908 1.07889 0.258357 0.0559774 0.22642 0.242016 0.155819 0.556963 0.846444 0.316491 -0.268082 -0.418437 0.00336723 0.212701 0.0419977 -0.306134 -0.958409 -1.04862 -1.07681 -0.103188 0.957096 0.736285 0.0159944 0.0120061 -0.127255 -0.430454 -0.489499 -0.975176 -0.793849 0.119218 0.306773 0.156872 0.567156 0.590878 0.221392 0.298786 0.329372 0.319568 0.456668 0.816415 0.95119 0.476089 -0.0827715 -0.493529 -0.101397 0.267043 -0.386268 -0.801266 -0.747797 -0.989548 -0.819462 -0.0231379 0.903517 0.76765 0.101417 -0.41202 -0.594585 0.0606212 0.233547 -0.843359 -1.04954 -0.265111 0.0844717 0.202367 0.646701 0.714061 0.190144 0.0928406 0.347814 0.308515 0.415202 0.813922 1.00493 0.568324 -0.0650744 -0.122704 0.172122 0.0889674 -0.772821 -1.1892 -0.798378 -0.761739 -0.0353257 0.486177 0.50021 -0.0239269 ...]\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]======|\u001b[38;5;246mPHI01=[-0.47899 -0.275337 0.344071 0.540172 0.305868 -0.0884352 -0.348127 -0.760403 -0.970949 -0.881878 -0.698715 -0.52696 -0.292202 -0.334623 0.160768 0.123227 -0.0317472 -0.499707 -0.653537 -0.365983 -0.508112 -0.808545 -0.664151 -0.748805 -0.871238 -0.654296 -0.995492 -1.29829 -0.923516 -0.470407 -0.456115 -0.221848 -0.38107 -0.425155 -0.280948 0.156917 0.262797 0.154001 -0.174799 -0.51216 -0.628448 -0.282768 -0.423579 -0.649479 -0.409469 -0.329331 -0.476005 0.210689 -0.176506 -0.888466 -1.13844 -0.701318 -0.416382 -0.365081 -0.456865 -0.566498 -0.989642 -0.948128 -1.03643 -1.15297 -0.861137 -0.15139 -0.0604313 -0.358716 -0.157809 -0.00265639 0.16237 0.603189 0.490705 -0.0660029 -0.144696 -0.319273 -0.588667 -0.354157 -0.0516477 -0.294916 -0.57316 -0.41364 -0.769557 -0.248029 -0.187638 -0.279643 -0.71604 -0.762351 -0.61394 -0.438123 -0.470653 -0.72974 -0.562355 -0.961297 -0.804459 -0.401036 -0.541832 -0.247489 -0.440441 -0.286678 0.36482 0.711236 0.804505 0.657639 ...]\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]======|\u001b[38;5;246mPHI02=[-0.714171 -0.954039 -0.789022 -0.310415 0.468433 0.469865 -0.152044 -0.476037 -0.152973 0.501889 0.384581 -0.429034 -0.697627 -0.190423 -0.1603 -0.352953 0.187856 0.360507 -0.149547 -0.488566 -0.146924 0.338911 0.782362 0.903405 0.246365 -0.0418358 0.174571 0.19951 0.176551 0.437137 0.54189 0.0320788 -0.666948 -0.624211 -0.574723 -0.268733 0.448439 0.438498 -0.49923 -0.744885 -0.141333 0.251378 0.332573 -0.189451 -0.57827 0.00363836 0.211721 -0.174289 -0.447886 -0.123838 0.259565 -0.108334 -0.302083 0.177267 0.710738 0.638082 0.356625 0.0286319 -0.280322 0.150245 0.653689 0.72512 0.517442 -0.179118 -0.78061 -0.853916 -0.206949 0.233329 0.465516 0.0322694 -0.818205 -0.929686 0.0764187 0.706758 0.0178704 -0.414925 -0.37748 -0.256959 0.379719 -0.0534546 -0.911298 -0.601422 0.037601 0.233487 0.189314 0.298429 0.580945 0.370627 -0.135265 -0.0886211 -0.0302691 0.374801 1.17813 1.23784 0.334563 -0.28856 -0.382926 -0.304032 0.0311225 0.0596017 ...]\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]======|\u001b[38;5;246mPHI12=[-0.261074 -0.723468 -0.580355 -0.508727 -0.406396 -0.448365 -0.333382 -0.0203574 0.656873 0.691173 0.023265 0.0511115 0.331576 0.0762668 -0.283125 -0.318637 -0.577458 -0.55819 -0.380347 -0.372867 -0.181456 0.273605 0.452558 0.323736 0.655595 0.856672 0.494262 0.713381 0.650832 -0.0948898 -0.261369 0.0595556 -0.153547 -0.231318 -0.281559 -0.125459 0.139411 -0.132486 -0.557851 -0.413157 0.657238 0.818939 0.119346 0.129821 0.0799448 0.144908 0.0233095 -0.299188 -0.341515 -0.367401 -0.304651 -0.246008 -0.238153 0.0133753 0.0188055 0.171857 0.270638 0.374865 0.566372 0.54362 0.442638 -0.271199 -0.440424 -0.111168 0.0867245 0.61856 0.676089 0.161674 -0.0841224 0.0547199 -0.483532 -0.54925 0.0300337 0.479231 0.477384 0.289856 0.0796836 -0.321272 -0.181431 0.107619 0.132951 0.0291782 0.0916901 0.0029343 -0.0191281 -0.066129 -0.299576 -0.0573696 0.058036 0.0946184 0.121661 0.0514253 -0.107541 -0.472873 -0.578923 -0.422921 -0.00967912 0.962352 1.00956 -0.0477528 ...]\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]======|\u001b[38;5;246mphi2=[1.72827 -1.35606 -1.37749 -0.92249 -0.628635 -0.161994 -0.28799 -0.336017 -1.3326 -1.59604 -0.888633 -0.490375 -0.40169 0.0958226 2.14761 1.50674 0.56761 -0.241441 0.0154466 0.173767 0.215984 -0.0166132 -0.288167 -1.46812 -1.28931 -0.908411 -1.28762 -2.29155 -1.06006 0.280947 3.10411 3.8332 3.30679 -0.418589 -0.501869 0.752136 -0.0736083 0.153135 -0.55776 -1.16983 -1.14232 -1.15101 -1.082 -0.0685876 0.128096 -0.108771 -0.248535 -0.0198442 0.0124848 0.685359 0.273156 1.56115 1.74196 2.58411 1.01946 -0.475946 -1.21362 -0.960462 -1.37438 -1.72114 -0.156369 2.38899 2.49078 3.07471 1.2475 -1.12031 -0.0592973 0.482805 -0.431902 0.0935961 -0.881842 -1.21832 0.158254 -1.25849 -1.53188 -1.02762 -0.464997 -0.375528 -1.16875 -0.504441 -0.903491 -0.454165 0.0686159 0.118202 0.488907 1.28146 0.881376 0.580084 -0.276586 -0.773021 -0.327178 -0.291652 -0.558051 1.60747 1.49686 1.40085 -0.209403 -1.857 -2 -0.513817 ...]\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]====|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0885df70 for PHI00 in \u001b[38;5;227mlpt.c\u001b[0;36m:\u001b[38;5;192mget_potentials_periodic\u001b[0;36m:\u001b[0;32m302\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]====|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0887df80 for PHI11 in \u001b[38;5;227mlpt.c\u001b[0;36m:\u001b[38;5;192mget_potentials_periodic\u001b[0;36m:\u001b[0;32m303\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]====|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0889df90 for PHI22 in \u001b[38;5;227mlpt.c\u001b[0;36m:\u001b[38;5;192mget_potentials_periodic\u001b[0;36m:\u001b[0;32m304\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]====|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb088bdfa0 for PHI01 in \u001b[38;5;227mlpt.c\u001b[0;36m:\u001b[38;5;192mget_potentials_periodic\u001b[0;36m:\u001b[0;32m305\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]====|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb088ddfb0 for PHI02 in \u001b[38;5;227mlpt.c\u001b[0;36m:\u001b[38;5;192mget_potentials_periodic\u001b[0;36m:\u001b[0;32m306\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]====|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0895b150 for PHI12 in \u001b[38;5;227mlpt.c\u001b[0;36m:\u001b[38;5;192mget_potentials_periodic\u001b[0;36m:\u001b[0;32m307\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]====|\u001b[38;5;246mCorrectly allocated memory (139264 bytes) at 0x55cb0883bf60 for AUX in \u001b[38;5;227mpoisson_solvers.c\u001b[0;36m:\u001b[38;5;192msolve_poisson_DFT\u001b[0;36m:\u001b[0;32m106\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]====|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0883bf60 for AUX in \u001b[38;5;227mpoisson_solvers.c\u001b[0;36m:\u001b[38;5;192msolve_poisson_DFT\u001b[0;36m:\u001b[0;32m116\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]======|\u001b[38;5;246mphi2=[-7.19243 0.711433 2.50844 1.69895 1.92396 1.6682 0.784271 0.281268 1.94507 3.55332 3.40833 3.03304 2.65963 1.32323 -1.00243 -0.0334973 2.66263 4.45627 4.45348 4.21385 3.71045 3.81197 5.12959 7.70255 8.45673 8.42981 7.75244 5.59556 0.280392 -5.65557 -11.5773 -12.959 -9.89881 -1.35776 1.11734 0.845204 2.14053 2.64331 3.47923 4.27156 4.58508 5.40694 5.18881 4.39324 4.15083 3.77005 3.01167 2.80652 4.09826 3.8848 2.85791 0.578 -1.14119 -2.31897 -0.0614372 3.72552 6.73959 7.5081 6.68027 3.58213 -2.49277 -9.37053 -13.4469 -14.48 -7.47699 -0.558793 1.33027 1.88828 3.45775 3.73167 4.93722 6.00481 4.99978 6.18209 5.99903 6.3281 6.40934 6.23168 6.49441 5.85855 6.35357 5.33819 3.13015 0.986308 -1.45782 -3.38515 -2.17893 0.711807 3.98067 5.27667 3.76267 0.340354 -4.39222 -9.8257 -11.8912 -11.672 -3.83313 1.35645 3.69302 3.7771 ...]\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]==|Computing Lagrangian potentials, periodic boundary conditions (using 32 cores) done.\n",
"[02:24:16\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]==|Computing Lagrangian displacement field (using 32 cores)...\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]====|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0883bf60 for Psi1_pad in \u001b[38;5;227mlpt.c\u001b[0;36m:\u001b[38;5;192mcompute_LPT_displacements\u001b[0;36m:\u001b[0;32m512\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]====|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0885bf70 for Psi2_pad in \u001b[38;5;227mlpt.c\u001b[0;36m:\u001b[38;5;192mcompute_LPT_displacements\u001b[0;36m:\u001b[0;32m514\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]======|\u001b[38;5;246mPsi1_0=[7.17583 4.96459 3.35968 1.80851 2.11802 3.68224 3.99748 3.07406 2.09333 2.46217 4.10089 4.00049 2.38475 1.20998 1.62306 0.568782 0.211242 1.32021 1.65327 0.722018 -0.300995 0.134326 1.05465 3.26377 4.66827 4.24923 4.50093 4.94752 5.29897 5.65372 7.04751 7.82128 5.63338 4.26219 3.13654 1.9633 2.06161 3.75706 3.8156 1.76014 0.836061 1.19481 1.84157 2.5251 1.08377 0.212019 1.09832 1.0589 0.40116 -0.732638 -0.0941916 0.30562 -0.52753 -0.902712 0.181539 1.94024 2.73387 3.36674 2.8484 2.24545 3.44938 4.86021 6.34986 6.92998 5.65155 3.26397 2.23588 2.43618 3.1692 4.29824 3.29828 1.02542 -0.420464 1.3311 2.40657 1.40258 0.746872 -0.10734 -0.280964 1.41154 -0.494783 -2.23366 -2.90047 -2.08325 -1.96652 -1.326 -0.772808 0.997782 0.709702 0.45672 0.355217 0.335645 1.85442 5.04816 6.80579 6.38641 5.00215 4.25156 3.78602 4.37605 ...]\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]======|\u001b[38;5;246mPsi2_0=[-3.13183 -2.98806 -2.22211 -1.75676 -1.27025 -1.20952 -1.27562 -1.72865 -1.80505 -1.33031 -1.03401 -0.489251 -0.477254 -0.56089 -0.126299 -0.298697 -0.0856172 0.449229 0.581163 -0.358395 -1.26285 -1.6738 -1.28106 -0.672622 -0.928629 -1.06536 -0.877262 -0.466991 0.119142 -0.472103 -1.80751 -3.16017 -3.33508 -2.88215 -2.32954 -2.05188 -1.42823 -0.842016 -0.596849 -1.44055 -1.5337 -0.880083 -0.853235 -0.535422 -0.289002 -0.0444291 0.660143 0.683142 0.133926 -0.18701 -0.142778 -0.192245 -1.01212 -1.66042 -1.15919 -0.413013 -0.631024 -0.998227 -0.831713 -0.437676 -0.168854 -1.31104 -2.63695 -3.88446 -3.01074 -2.37205 -2.35002 -1.9508 -1.13861 -0.847349 -0.801503 -0.976978 -0.896723 -0.734903 -1.50721 -0.715184 0.253651 0.397625 0.439514 0.820333 0.0939471 -0.449729 -0.62302 -0.706148 -1.03158 -1.1885 -0.843086 -0.106953 -0.388954 -0.774329 -0.538962 -0.18687 0.0974321 -1.84371 -3.22365 -3.69871 -2.33727 -1.93641 -2.01598 -1.88261 ...]\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]====|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0883bf60 for Psi1_pad in \u001b[38;5;227mlpt.c\u001b[0;36m:\u001b[38;5;192mcompute_LPT_displacements\u001b[0;36m:\u001b[0;32m565\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]====|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0885bf70 for Psi2_pad in \u001b[38;5;227mlpt.c\u001b[0;36m:\u001b[38;5;192mcompute_LPT_displacements\u001b[0;36m:\u001b[0;32m567\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]====|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0883bf60 for Psi1_pad in \u001b[38;5;227mlpt.c\u001b[0;36m:\u001b[38;5;192mcompute_LPT_displacements\u001b[0;36m:\u001b[0;32m512\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]====|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0885bf70 for Psi2_pad in \u001b[38;5;227mlpt.c\u001b[0;36m:\u001b[38;5;192mcompute_LPT_displacements\u001b[0;36m:\u001b[0;32m514\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]======|\u001b[38;5;246mPsi1_1=[5.94927 4.16253 3.0554 1.84111 1.02049 0.215528 -0.772967 -1.118 -0.854399 1.50949 1.91029 1.60255 2.11474 2.92886 2.41981 1.79636 1.14526 -0.513472 -1.0875 -2.03486 -2.57897 -2.76068 -1.48455 -0.950449 -0.189603 1.67193 3.23708 3.64898 6.09061 6.25231 5.71105 5.20683 2.64042 2.1594 1.71515 1.03317 1.21331 1.59081 0.68337 -0.640597 -0.969258 1.98835 2.3065 2.46573 2.82578 2.78551 3.40541 2.87875 2.20866 1.51269 0.739052 0.294085 -0.244978 -0.658526 -0.191478 -0.583305 0.49595 0.49925 1.99541 2.76474 4.16989 4.53529 3.08509 2.77359 -0.857157 0.107762 1.61708 2.81212 2.26378 2.47563 2.48265 0.541504 0.285653 0.661639 2.20258 2.57118 3.362 2.88991 2.07691 2.16419 2.50739 2.69599 2.6241 3.06275 2.63584 2.98624 2.37132 1.78793 2.14184 2.02007 2.52032 2.50672 2.72602 2.07656 0.834525 -0.239136 -2.3219 -1.8406 1.52751 2.19765 ...]\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]======|\u001b[38;5;246mPsi2_1=[-1.62359 -1.00602 -0.418313 0.144603 0.236817 0.562081 1.99035 3.24628 2.51063 1.59997 1.20528 0.727313 0.65581 0.986954 0.984299 0.591405 0.259888 -0.463477 -1.01116 -1.77406 -2.17928 -2.6014 -2.25895 -1.4749 -0.36377 -0.102846 0.0885363 -0.093285 -0.81882 -1.82548 -1.93929 -1.72384 -0.0711403 -0.317556 -0.294542 0.0473329 0.383448 0.515867 1.03824 1.43088 0.763678 0.657193 0.647673 0.823765 0.937426 1.22711 1.87421 1.47301 0.922734 0.22048 -0.330833 -0.806887 -1.29207 -1.79928 -1.82713 -1.74768 -1.11902 -0.788286 -0.997443 -1.3138 -1.16815 -1.04253 -0.0784729 0.321726 1.51642 0.678553 0.643921 0.732973 0.598034 0.423424 0.246891 0.722541 0.513195 0.555574 0.428877 0.889885 0.840357 0.782335 1.31904 1.36973 0.833982 0.595701 0.268146 0.384413 0.241237 0.177466 -0.254867 -0.678472 -0.987686 -0.949183 -0.999471 -0.835961 -0.512131 0.222434 1.2247 1.79331 1.29619 0.269115 0.358978 0.370496 ...]\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]====|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0883bf60 for Psi1_pad in \u001b[38;5;227mlpt.c\u001b[0;36m:\u001b[38;5;192mcompute_LPT_displacements\u001b[0;36m:\u001b[0;32m565\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]====|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0885bf70 for Psi2_pad in \u001b[38;5;227mlpt.c\u001b[0;36m:\u001b[38;5;192mcompute_LPT_displacements\u001b[0;36m:\u001b[0;32m567\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]====|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0883bf60 for Psi1_pad in \u001b[38;5;227mlpt.c\u001b[0;36m:\u001b[38;5;192mcompute_LPT_displacements\u001b[0;36m:\u001b[0;32m512\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]====|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0885bf70 for Psi2_pad in \u001b[38;5;227mlpt.c\u001b[0;36m:\u001b[38;5;192mcompute_LPT_displacements\u001b[0;36m:\u001b[0;32m514\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]======|\u001b[38;5;246mPsi1_2=[-1.59618 -2.71207 -1.17668 0.478564 0.21004 0.912336 1.35101 -0.343319 -3.26686 -4.33751 -4.48873 -5.7792 -5.39157 -5.50166 -4.35556 -1.13848 -0.0400214 -0.105049 0.18389 0.80063 1.15195 1.42391 3.37981 4.80968 4.64577 3.73736 2.97202 3.75083 3.82282 3.91882 2.59829 0.0851774 -2.15063 -3.97724 -2.56337 -0.148855 0.381763 -0.0848751 0.429788 -0.593897 -1.29203 -2.55189 -5.19273 -5.72729 -4.71586 -4.50019 -4.08837 -2.23157 -1.72486 -1.346 -0.529714 -0.028513 0.748561 1.79816 4.01422 5.60292 5.91858 5.27183 3.94446 4.86625 5.01263 3.32118 1.80757 0.329986 -2.21037 -3.63734 -2.30292 -0.0232725 0.76768 0.382393 -0.880397 -1.99595 -0.637912 -1.06176 -4.01135 -5.25992 -5.07179 -4.92203 -4.26232 -2.33523 -1.40608 -1.57465 -1.03472 -0.183401 0.199344 1.47741 3.45503 5.49711 5.72833 5.23681 5.23751 5.9253 5.59338 2.83402 0.836591 -0.359492 -1.80373 -1.503 0.140982 0.497841 ...]\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]======|\u001b[38;5;246mPsi2_2=[3.4176 2.42522 0.24688 -0.146121 -0.00768793 -0.284921 -0.346733 0.290199 0.818014 0.365817 -0.130071 -0.187175 -0.427452 -0.915515 -0.339182 0.916265 1.12244 0.447713 -0.0606048 -0.185758 -0.100472 0.354784 0.972645 0.831785 0.181816 -0.176073 -0.708562 -1.86801 -2.81278 -2.96442 -1.82585 1.09621 3.28055 2.75404 0.550741 0.255798 0.449528 0.334677 0.407062 0.27646 0.283844 0.150933 -0.253426 -0.259496 -0.155796 -0.284788 -0.240884 0.271645 0.269571 -0.310085 -0.826701 -0.999777 -0.724242 0.269939 1.51112 1.70026 0.945644 -0.0148308 -0.981493 -2.29326 -3.23816 -2.73853 -1.27736 0.887022 2.77831 2.20182 0.611769 0.531869 0.460847 0.369868 0.568285 0.0156394 0.0443213 0.249813 0.0365016 0.102577 -0.0241039 0.0212677 -0.0932828 -0.0352095 -0.13009 -0.805855 -1.08797 -1.14699 -1.09286 -0.180277 1.02424 1.5399 1.14121 -0.0544996 -1.23408 -2.03872 -2.54151 -1.87474 -0.461587 1.10355 2.1658 1.88154 0.605162 0.209911 ...]\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]====|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0883bf60 for Psi1_pad in \u001b[38;5;227mlpt.c\u001b[0;36m:\u001b[38;5;192mcompute_LPT_displacements\u001b[0;36m:\u001b[0;32m565\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]====|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0885bf70 for Psi2_pad in \u001b[38;5;227mlpt.c\u001b[0;36m:\u001b[38;5;192mcompute_LPT_displacements\u001b[0;36m:\u001b[0;32m567\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]==|Computing Lagrangian displacement field (using 32 cores) done.\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb087d1430 for phi1 in \u001b[38;5;227mlpt.c\u001b[0;36m:\u001b[38;5;192mevolve_lpt\u001b[0;36m:\u001b[0;32m627\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08772540 for phi2 in \u001b[38;5;227mlpt.c\u001b[0;36m:\u001b[38;5;192mevolve_lpt\u001b[0;36m:\u001b[0;32m629\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]====|\u001b[38;5;246mD1=1.000000\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]====|\u001b[38;5;246mD2=-0.432085\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]====|\u001b[38;5;246mVel1=-52.341447\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]====|\u001b[38;5;246mVel2=-45.767478\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb08772540 for KICK_X in \u001b[38;5;227mlpt.c\u001b[0;36m:\u001b[38;5;192mevolve_lpt\u001b[0;36m:\u001b[0;32m646\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb087d1430 for KICK_Y in \u001b[38;5;227mlpt.c\u001b[0;36m:\u001b[38;5;192mevolve_lpt\u001b[0;36m:\u001b[0;32m647\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0883bf60 for KICK_Z in \u001b[38;5;227mlpt.c\u001b[0;36m:\u001b[38;5;192mevolve_lpt\u001b[0;36m:\u001b[0;32m648\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]==|Changing velocities of particles...\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]====|\u001b[38;5;246mmaxkick=1136.897005\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]==|Changing velocities of particles done.\n",
"[02:24:16\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]==|Displacing particles...\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]====|\u001b[38;5;246mmaxdrift=17.139083\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]==|Displacing particles done.\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08772540 for KICK_X in \u001b[38;5;227mlpt.c\u001b[0;36m:\u001b[38;5;192mevolve_lpt\u001b[0;36m:\u001b[0;32m697\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb087d1430 for KICK_Y in \u001b[38;5;227mlpt.c\u001b[0;36m:\u001b[38;5;192mevolve_lpt\u001b[0;36m:\u001b[0;32m698\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0883bf60 for KICK_Z in \u001b[38;5;227mlpt.c\u001b[0;36m:\u001b[38;5;192mevolve_lpt\u001b[0;36m:\u001b[0;32m699\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;147mMODULE \u001b[00m]|\u001b[38;5;147mModuleLPT: Evolving with Lagrangian perturbation theory (using 32 cores) done.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;159mTIMER \u001b[00m]|LPT evolution: 10.558 CPU - 0.389 wallclock seconds used.\n",
"[02:24:16\u001b[00m|\u001b[38;5;147mMODULE \u001b[00m]|\u001b[38;5;147mModuleLPT: Computing outputs...\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mGiven the available memory, 32767 threads could be allocated and 32 threads will be used in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel\u001b[0;36m:\u001b[0;32m347\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mGiven the available memory, 32767 threads could be allocated and 32 threads will be used in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m73\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]==|Getting density contrast (using 32 cores and 32 arrays, parallel routine 1)...\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]====|\u001b[38;5;246mPerforming CiC binning...\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]====|\u001b[38;5;246mPerforming CiC binning with thread 0...\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]====|\u001b[38;5;246mCorrectly allocated and initialized memory (131072 bytes) at 0x1488e0000b60 for threadedDensity[6] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]====|\u001b[38;5;246mPerforming CiC binning with thread 6...\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]====|\u001b[38;5;246mCorrectly allocated and initialized memory (131072 bytes) at 0x1488f8000b60 for threadedDensity[19] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]====|\u001b[38;5;246mCorrectly allocated and initialized memory (131072 bytes) at 0x148908000b60 for threadedDensity[8] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]====|\u001b[38;5;246mCorrectly allocated and initialized memory (131072 bytes) at 0x148910000b60 for threadedDensity[23] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]====|\u001b[38;5;246mPerforming CiC binning with thread 8...\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]====|\u001b[38;5;246mPerforming CiC binning with thread 23...\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]====|\u001b[38;5;246mCorrectly allocated and initialized memory (131072 bytes) at 0x1489a0000b60 for threadedDensity[3] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]====|\u001b[38;5;246mCorrectly allocated and initialized memory (131072 bytes) at 0x148990000b60 for threadedDensity[21] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]====|\u001b[38;5;246mPerforming CiC binning with thread 3...\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]====|\u001b[38;5;246mPerforming CiC binning with thread 21...\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]====|\u001b[38;5;246mCorrectly allocated and initialized memory (131072 bytes) at 0x1488d0000b60 for threadedDensity[5] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]====|\u001b[38;5;246mCorrectly allocated and initialized memory (131072 bytes) at 0x1488f0000b60 for threadedDensity[24] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]====|\u001b[38;5;246mPerforming CiC binning with thread 5...\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]====|\u001b[38;5;246mPerforming CiC binning with thread 24...\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]====|\u001b[38;5;246mCorrectly allocated and initialized memory (131072 bytes) at 0x148980000b60 for threadedDensity[11] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]====|\u001b[38;5;246mCorrectly allocated and initialized memory (131072 bytes) at 0x148988000b60 for threadedDensity[28] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]====|\u001b[38;5;246mPerforming CiC binning with thread 11...\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]====|\u001b[38;5;246mPerforming CiC binning with thread 28...\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]====|\u001b[38;5;246mCorrectly allocated and initialized memory (131072 bytes) at 0x1488e8000b60 for threadedDensity[2] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]====|\u001b[38;5;246mCorrectly allocated and initialized memory (131072 bytes) at 0x1489b0000b60 for threadedDensity[1] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]====|\u001b[38;5;246mCorrectly allocated and initialized memory (131072 bytes) at 0x1489a8000b60 for threadedDensity[30] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]====|\u001b[38;5;246mPerforming CiC binning with thread 1...\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]====|\u001b[38;5;246mPerforming CiC binning with thread 30...\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]====|\u001b[38;5;246mPerforming CiC binning with thread 2...\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]====|\u001b[38;5;246mCorrectly allocated and initialized memory (131072 bytes) at 0x148978000b60 for threadedDensity[26] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]====|\u001b[38;5;246mCorrectly allocated and initialized memory (131072 bytes) at 0x148970000b60 for threadedDensity[7] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]====|\u001b[38;5;246mPerforming CiC binning with thread 26...\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]====|\u001b[38;5;246mPerforming CiC binning with thread 7...\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]====|\u001b[38;5;246mPerforming CiC binning with thread 19...\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]====|\u001b[38;5;246mCorrectly allocated and initialized memory (131072 bytes) at 0x148950000b60 for threadedDensity[9] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]====|\u001b[38;5;246mCorrectly allocated and initialized memory (131072 bytes) at 0x148998000b60 for threadedDensity[25] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]====|\u001b[38;5;246mCorrectly allocated and initialized memory (131072 bytes) at 0x148928000b60 for threadedDensity[20] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]====|\u001b[38;5;246mPerforming CiC binning with thread 25...\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]====|\u001b[38;5;246mPerforming CiC binning with thread 20...\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]====|\u001b[38;5;246mPerforming CiC binning with thread 9...\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]====|\u001b[38;5;246mCorrectly allocated and initialized memory (131072 bytes) at 0x148940000b60 for threadedDensity[27] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]====|\u001b[38;5;246mCorrectly allocated and initialized memory (131072 bytes) at 0x1489b8000b60 for threadedDensity[4] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]====|\u001b[38;5;246mPerforming CiC binning with thread 27...\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]====|\u001b[38;5;246mPerforming CiC binning with thread 4...\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]====|\u001b[38;5;246mCorrectly allocated and initialized memory (131072 bytes) at 0x1488d8000b60 for threadedDensity[29] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]====|\u001b[38;5;246mCorrectly allocated and initialized memory (131072 bytes) at 0x148948000b60 for threadedDensity[31] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]====|\u001b[38;5;246mCorrectly allocated and initialized memory (131072 bytes) at 0x148900000b60 for threadedDensity[16] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]====|\u001b[38;5;246mPerforming CiC binning with thread 31...\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]====|\u001b[38;5;246mPerforming CiC binning with thread 16...\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]====|\u001b[38;5;246mPerforming CiC binning with thread 29...\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]====|\u001b[38;5;246mCorrectly allocated and initialized memory (131072 bytes) at 0x148968000b60 for threadedDensity[10] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]====|\u001b[38;5;246mCorrectly allocated and initialized memory (131072 bytes) at 0x148960000b60 for threadedDensity[13] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]====|\u001b[38;5;246mCorrectly allocated and initialized memory (131072 bytes) at 0x148958000b60 for threadedDensity[22] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]====|\u001b[38;5;246mPerforming CiC binning with thread 13...\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]====|\u001b[38;5;246mPerforming CiC binning with thread 22...\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]====|\u001b[38;5;246mPerforming CiC binning with thread 10...\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]====|\u001b[38;5;246mCorrectly allocated and initialized memory (131072 bytes) at 0x148930000b60 for threadedDensity[14] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]====|\u001b[38;5;246mCorrectly allocated and initialized memory (131072 bytes) at 0x148938000b60 for threadedDensity[18] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]====|\u001b[38;5;246mPerforming CiC binning with thread 14...\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]====|\u001b[38;5;246mPerforming CiC binning with thread 18...\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]====|\u001b[38;5;246mCorrectly allocated and initialized memory (131072 bytes) at 0x148920000b60 for threadedDensity[12] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]====|\u001b[38;5;246mCorrectly allocated and initialized memory (131072 bytes) at 0x148918000b60 for threadedDensity[15] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]====|\u001b[38;5;246mPerforming CiC binning with thread 12...\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]====|\u001b[38;5;246mPerforming CiC binning with thread 15...\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]====|\u001b[38;5;246mCorrectly allocated and initialized memory (131072 bytes) at 0x1488dc000b60 for threadedDensity[17] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]====|\u001b[38;5;246mPerforming CiC binning with thread 17...\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]====|\u001b[38;5;246mPerforming CiC binning with thread 0 done.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]====|\u001b[38;5;246mPerforming CiC binning with thread 3 done.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]====|\u001b[38;5;246mPerforming CiC binning with thread 21 done.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]====|\u001b[38;5;246mPerforming CiC binning with thread 24 done.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]====|\u001b[38;5;246mPerforming CiC binning with thread 5 done.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]====|\u001b[38;5;246mPerforming CiC binning with thread 17 done.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]====|\u001b[38;5;246mPerforming CiC binning with thread 28 done.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]====|\u001b[38;5;246mPerforming CiC binning with thread 11 done.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]====|\u001b[38;5;246mPerforming CiC binning with thread 19 done.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]====|\u001b[38;5;246mPerforming CiC binning with thread 9 done.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]====|\u001b[38;5;246mPerforming CiC binning with thread 7 done.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]====|\u001b[38;5;246mPerforming CiC binning with thread 26 done.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]====|\u001b[38;5;246mPerforming CiC binning with thread 1 done.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]====|\u001b[38;5;246mPerforming CiC binning with thread 30 done.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]====|\u001b[38;5;246mPerforming CiC binning with thread 25 done.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]====|\u001b[38;5;246mPerforming CiC binning with thread 20 done.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]====|\u001b[38;5;246mPerforming CiC binning with thread 27 done.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]====|\u001b[38;5;246mPerforming CiC binning with thread 4 done.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]====|\u001b[38;5;246mPerforming CiC binning with thread 31 done.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]====|\u001b[38;5;246mPerforming CiC binning with thread 16 done.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]====|\u001b[38;5;246mPerforming CiC binning with thread 10 done.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]====|\u001b[38;5;246mPerforming CiC binning with thread 23 done.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]====|\u001b[38;5;246mPerforming CiC binning with thread 8 done.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]====|\u001b[38;5;246mPerforming CiC binning with thread 6 done.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]====|\u001b[38;5;246mPerforming CiC binning with thread 29 done.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]====|\u001b[38;5;246mPerforming CiC binning with thread 18 done.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]====|\u001b[38;5;246mPerforming CiC binning with thread 14 done.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]====|\u001b[38;5;246mPerforming CiC binning with thread 13 done.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]====|\u001b[38;5;246mPerforming CiC binning with thread 22 done.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]====|\u001b[38;5;246mPerforming CiC binning with thread 12 done.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]====|\u001b[38;5;246mPerforming CiC binning with thread 15 done.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]====|\u001b[38;5;246mPerforming CiC binning with thread 2 done.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]====|\u001b[38;5;246mPerforming CiC done.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]====|\u001b[38;5;246mPerforming CiC reduction...\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]====|\u001b[38;5;246mCorrectly freed memory allocated at 0x1489b0000b60 for threadedDensity[1] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]====|\u001b[38;5;246mCorrectly freed memory allocated at 0x1488e8000b60 for threadedDensity[2] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]====|\u001b[38;5;246mCorrectly freed memory allocated at 0x1489a0000b60 for threadedDensity[3] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]====|\u001b[38;5;246mCorrectly freed memory allocated at 0x1489b8000b60 for threadedDensity[4] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]====|\u001b[38;5;246mCorrectly freed memory allocated at 0x1488d0000b60 for threadedDensity[5] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]====|\u001b[38;5;246mCorrectly freed memory allocated at 0x1488e0000b60 for threadedDensity[6] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]====|\u001b[38;5;246mCorrectly freed memory allocated at 0x148970000b60 for threadedDensity[7] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]====|\u001b[38;5;246mCorrectly freed memory allocated at 0x148908000b60 for threadedDensity[8] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]====|\u001b[38;5;246mCorrectly freed memory allocated at 0x148950000b60 for threadedDensity[9] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]====|\u001b[38;5;246mCorrectly freed memory allocated at 0x148968000b60 for threadedDensity[10] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]====|\u001b[38;5;246mCorrectly freed memory allocated at 0x148980000b60 for threadedDensity[11] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]====|\u001b[38;5;246mCorrectly freed memory allocated at 0x148920000b60 for threadedDensity[12] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]====|\u001b[38;5;246mCorrectly freed memory allocated at 0x148960000b60 for threadedDensity[13] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]====|\u001b[38;5;246mCorrectly freed memory allocated at 0x148930000b60 for threadedDensity[14] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]====|\u001b[38;5;246mCorrectly freed memory allocated at 0x148918000b60 for threadedDensity[15] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]====|\u001b[38;5;246mCorrectly freed memory allocated at 0x148900000b60 for threadedDensity[16] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]====|\u001b[38;5;246mCorrectly freed memory allocated at 0x1488dc000b60 for threadedDensity[17] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]====|\u001b[38;5;246mCorrectly freed memory allocated at 0x148938000b60 for threadedDensity[18] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]====|\u001b[38;5;246mCorrectly freed memory allocated at 0x1488f8000b60 for threadedDensity[19] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]====|\u001b[38;5;246mCorrectly freed memory allocated at 0x148928000b60 for threadedDensity[20] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]====|\u001b[38;5;246mCorrectly freed memory allocated at 0x148990000b60 for threadedDensity[21] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]====|\u001b[38;5;246mCorrectly freed memory allocated at 0x148958000b60 for threadedDensity[22] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]====|\u001b[38;5;246mCorrectly freed memory allocated at 0x148910000b60 for threadedDensity[23] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]====|\u001b[38;5;246mCorrectly freed memory allocated at 0x1488f0000b60 for threadedDensity[24] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]====|\u001b[38;5;246mCorrectly freed memory allocated at 0x148998000b60 for threadedDensity[25] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]====|\u001b[38;5;246mCorrectly freed memory allocated at 0x148978000b60 for threadedDensity[26] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]====|\u001b[38;5;246mCorrectly freed memory allocated at 0x148940000b60 for threadedDensity[27] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]====|\u001b[38;5;246mCorrectly freed memory allocated at 0x148988000b60 for threadedDensity[28] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]====|\u001b[38;5;246mCorrectly freed memory allocated at 0x1488d8000b60 for threadedDensity[29] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]====|\u001b[38;5;246mCorrectly freed memory allocated at 0x1489a8000b60 for threadedDensity[30] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]====|\u001b[38;5;246mCorrectly freed memory allocated at 0x148948000b60 for threadedDensity[31] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]====|\u001b[38;5;246mPerforming CiC reduction done.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]==|Getting density contrast (using 32 cores and 32 arrays, parallel routine 1) done.\n",
"[02:24:16\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]==|Writing field to '/data70/hoellinger/WIP3M/forcediag1/lpt_density.h5'...\n",
"[02:24:16\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]==|Writing field to '/data70/hoellinger/WIP3M/forcediag1/lpt_density.h5' done.\n",
"[02:24:16\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]==|Writing header in '/data70/hoellinger/WIP3M/forcediag1/lpt_particles.gadget3'...\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]======|\u001b[38;5;246mheader1.npart=[0 32768 0 0 0 0]\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]======|\u001b[38;5;246mheader1.mass=[1 69.0576 1 1 1 1]\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]======|\u001b[38;5;246mheader1.time=1.000000\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]======|\u001b[38;5;246mheader1.redshift=0.000000\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]======|\u001b[38;5;246mheader1.flag_sfr=0\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]======|\u001b[38;5;246mheader1.flag_feedback=0\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]======|\u001b[38;5;246mheader1.npartTotal=[0 32768 0 0 0 0]\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]======|\u001b[38;5;246mheader1.flag_cooling=0\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]======|\u001b[38;5;246mheader1.num_files=1\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]======|\u001b[38;5;246mheader1.BoxSize=64.000000\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]======|\u001b[38;5;246mheader1.Omega0=0.311100\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]======|\u001b[38;5;246mheader1.OmegaLambda=0.688900\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]======|\u001b[38;5;246mheader1.HubbleParam=0.676600\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]======|\u001b[38;5;246mheader1.flag_stellarage=0\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]======|\u001b[38;5;246mheader1.flag_metals=0\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]======|\u001b[38;5;246mheader1.npartTotalHighWord=[0 0 0 0 0 0]\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]======|\u001b[38;5;246mheader1.flag_entropy_instead_u=0\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]======|\u001b[38;5;246mheader1.flag_doubleprecision=0\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]======|\u001b[38;5;246mheader1.flag_ic_info=0\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]======|\u001b[38;5;246mheader1.lpt_scalingfactor=0\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]==|Writing header in '/data70/hoellinger/WIP3M/forcediag1/lpt_particles.gadget3' done.\n",
"[02:24:16\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]==|Writing snapshot in '/data70/hoellinger/WIP3M/forcediag1/lpt_particles.gadget3' (32768 particles)...\n",
"[02:24:16\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]====|Writing block: 'POS '...\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]======|\u001b[38;5;246mnpart_max=32768\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]======|\u001b[38;5;246mWriting chunk of size 32768, current particleID: n=0.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated memory (393216 bytes) at 0x55cb0895b150 for FloatBuffer in \u001b[38;5;227mio.c\u001b[0;36m:\u001b[38;5;192mwrite_hdf5_block\u001b[0;36m:\u001b[0;32m3644\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0895b150 for FloatBuffer in \u001b[38;5;227mio.c\u001b[0;36m:\u001b[38;5;192mwrite_hdf5_block\u001b[0;36m:\u001b[0;32m3754\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]====|Writing block: 'POS ' done.\n",
"[02:24:16\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]====|Writing block: 'VEL '...\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]======|\u001b[38;5;246mnpart_max=32768\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]======|\u001b[38;5;246mWriting chunk of size 32768, current particleID: n=0.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated memory (393216 bytes) at 0x55cb0895b150 for FloatBuffer in \u001b[38;5;227mio.c\u001b[0;36m:\u001b[38;5;192mwrite_hdf5_block\u001b[0;36m:\u001b[0;32m3644\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0895b150 for FloatBuffer in \u001b[38;5;227mio.c\u001b[0;36m:\u001b[38;5;192mwrite_hdf5_block\u001b[0;36m:\u001b[0;32m3754\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]====|Writing block: 'VEL ' done.\n",
"[02:24:16\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]====|Writing block: 'ID '...\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]======|\u001b[38;5;246mnpart_max=32768\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]======|\u001b[38;5;246mWriting chunk of size 32768, current particleID: n=0.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb087d1430 for ParticleIDtypeBuffer in \u001b[38;5;227mio.c\u001b[0;36m:\u001b[38;5;192mwrite_hdf5_block\u001b[0;36m:\u001b[0;32m3641\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb087d1430 for ParticleIDtypeBuffer in \u001b[38;5;227mio.c\u001b[0;36m:\u001b[38;5;192mwrite_hdf5_block\u001b[0;36m:\u001b[0;32m3751\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]====|Writing block: 'ID ' done.\n",
"[02:24:16\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]==|Writing snapshot in '/data70/hoellinger/WIP3M/forcediag1/lpt_particles.gadget3' done.\n",
"[02:24:16\u001b[00m|\u001b[38;5;147mMODULE \u001b[00m]|\u001b[38;5;147mModuleLPT: Computing outputs done.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;159mTIMER \u001b[00m]|LPT output: 13.587 CPU - 0.477 wallclock seconds used.\n",
"[02:24:16\u001b[00m|\u001b[38;5;159mTIMER \u001b[00m]|ModuleLPT: 25.458 CPU - 0.919 wallclock seconds used.\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb087f5810 for ICs_field.data in \u001b[38;5;227mmain.c\u001b[0;36m:\u001b[38;5;192mmain_sbmy\u001b[0;36m:\u001b[0;32m264\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08575200 for PsiLPT in \u001b[38;5;227mmain.c\u001b[0;36m:\u001b[38;5;192mmain_sbmy\u001b[0;36m:\u001b[0;32m298\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb086a11f0 for P.positions in \u001b[38;5;227mmain.c\u001b[0;36m:\u001b[38;5;192mmain_sbmy\u001b[0;36m:\u001b[0;32m323\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08701200 for P.velocities in \u001b[38;5;227mmain.c\u001b[0;36m:\u001b[38;5;192mmain_sbmy\u001b[0;36m:\u001b[0;32m323\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08655220 for P.ids in \u001b[38;5;227mmain.c\u001b[0;36m:\u001b[38;5;192mmain_sbmy\u001b[0;36m:\u001b[0;32m323\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08635210 for FCs_field.data in \u001b[38;5;227mmain.c\u001b[0;36m:\u001b[38;5;192mmain_sbmy\u001b[0;36m:\u001b[0;32m324\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]|\u001b[38;5;246m178 calls to function malloc.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]|\u001b[38;5;246m178 calls to function free.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;159mTIMER \u001b[00m]|Simbelmynë: 25.466 CPU - 0.923 wallclock seconds used.\n",
"[02:24:16\u001b[00m|\u001b[38;5;117mINFO \u001b[00m]|Everything done successfully, exiting.\n",
"[02:24:16\u001b[00m|\u001b[38;5;227mCOMMAND \u001b[00m]|\u001b[38;5;227msimbelmyne /home/hoellinger/wip3m/results/forcediag1/nsteps20_example_spm.sbmy /data70/hoellinger/WIP3M/forcediag1/logs/nsteps20_spm.txt\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;117mINFO \u001b[00m]|\n",
"[02:24:16\u001b[00m|\u001b[38;5;117mINFO \u001b[00m]| .-~~-.--.\n",
"[02:24:16\u001b[00m|\u001b[38;5;117mINFO \u001b[00m]| : )\n",
"[02:24:16\u001b[00m|\u001b[38;5;117mINFO \u001b[00m]| .~ ~ -.\\ /.- ~~ .\n",
"[02:24:16\u001b[00m|\u001b[38;5;117mINFO \u001b[00m]| > `. .' <\n",
"[02:24:16\u001b[00m|\u001b[38;5;117mINFO \u001b[00m]| ( .- -. )\n",
"[02:24:16\u001b[00m|\u001b[38;5;117mINFO \u001b[00m]| `- -.-~ `- -' ~-.- -'\n",
"[02:24:16\u001b[00m|\u001b[38;5;117mINFO \u001b[00m]| ( : ) _ _ .-: ___________________________________\n",
"[02:24:16\u001b[00m|\u001b[38;5;117mINFO \u001b[00m]| ~--. : .--~ .-~ .-~ } \u001b[1;38;5;157mSIMBELMYNË\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;117mINFO \u001b[00m]| ~-.-^-.-~ \\_ .~ .-~ .~ (c) Florent Leclercq 2012 - SBMY_YEAR \n",
"[02:24:16\u001b[00m|\u001b[38;5;117mINFO \u001b[00m]| \\ ' \\ '_ _ -~ ___________________________________\n",
"[02:24:16\u001b[00m|\u001b[38;5;117mINFO \u001b[00m]| `.`. //\n",
"[02:24:16\u001b[00m|\u001b[38;5;117mINFO \u001b[00m]| . - ~ ~-.__`.`-.//\n",
"[02:24:16\u001b[00m|\u001b[38;5;117mINFO \u001b[00m]| .-~ . - ~ }~ ~ ~-.~-.\n",
"[02:24:16\u001b[00m|\u001b[38;5;117mINFO \u001b[00m]| .' .-~ .-~ :/~-.~-./:\n",
"[02:24:16\u001b[00m|\u001b[38;5;117mINFO \u001b[00m]| /_~_ _ . - ~ ~-.~-._\n",
"[02:24:16\u001b[00m|\u001b[38;5;117mINFO \u001b[00m]| ~-.<\n",
"[02:24:16\u001b[00m|\u001b[38;5;117mINFO \u001b[00m]|\n",
"[02:24:16\u001b[00m|\u001b[38;5;117mINFO \u001b[00m]|2025-05-22 02:24:16: Starting SIMBELMYNË, commit hash 860f12de187bb46026620362f000d9aa8bc3fb41\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]|\u001b[38;5;246mDebug mode ON\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]|Reading parameter file in '/home/hoellinger/wip3m/results/forcediag1/nsteps20_example_spm.sbmy'...\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly allocated memory (160232 bytes) at 0x55cb086a11f0 for hashtab in \u001b[38;5;227mread_param.c\u001b[0;36m:\u001b[38;5;192mread_parameterfile\u001b[0;36m:\u001b[0;32m347\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly allocated memory (32 bytes) at 0x55cb0879f020 for SnapFormat in \u001b[38;5;227mread_param.c\u001b[0;36m:\u001b[38;5;192mhash_set\u001b[0;36m:\u001b[0;32m43\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly allocated memory (32 bytes) at 0x55cb087ba180 for NumFilesPerSnapshot in \u001b[38;5;227mread_param.c\u001b[0;36m:\u001b[38;5;192mhash_set\u001b[0;36m:\u001b[0;32m43\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly allocated memory (32 bytes) at 0x55cb08797940 for ModuleLPT in \u001b[38;5;227mread_param.c\u001b[0;36m:\u001b[38;5;192mhash_set\u001b[0;36m:\u001b[0;32m43\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly allocated memory (32 bytes) at 0x55cb08797970 for InputRngStateLPT in \u001b[38;5;227mread_param.c\u001b[0;36m:\u001b[38;5;192mhash_set\u001b[0;36m:\u001b[0;32m43\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly allocated memory (32 bytes) at 0x55cb08799d70 for OutputRngStateLPT in \u001b[38;5;227mread_param.c\u001b[0;36m:\u001b[38;5;192mhash_set\u001b[0;36m:\u001b[0;32m43\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly allocated memory (32 bytes) at 0x55cb08799da0 for Particles in \u001b[38;5;227mread_param.c\u001b[0;36m:\u001b[38;5;192mhash_set\u001b[0;36m:\u001b[0;32m43\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly allocated memory (32 bytes) at 0x55cb08799dd0 for Mesh in \u001b[38;5;227mread_param.c\u001b[0;36m:\u001b[38;5;192mhash_set\u001b[0;36m:\u001b[0;32m43\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly allocated memory (32 bytes) at 0x55cb08799e00 for BoxSize in \u001b[38;5;227mread_param.c\u001b[0;36m:\u001b[38;5;192mhash_set\u001b[0;36m:\u001b[0;32m43\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly allocated memory (32 bytes) at 0x55cb087acc60 for corner0 in \u001b[38;5;227mread_param.c\u001b[0;36m:\u001b[38;5;192mhash_set\u001b[0;36m:\u001b[0;32m43\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly allocated memory (32 bytes) at 0x55cb087acc90 for corner1 in \u001b[38;5;227mread_param.c\u001b[0;36m:\u001b[38;5;192mhash_set\u001b[0;36m:\u001b[0;32m43\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly allocated memory (32 bytes) at 0x55cb087accc0 for corner2 in \u001b[38;5;227mread_param.c\u001b[0;36m:\u001b[38;5;192mhash_set\u001b[0;36m:\u001b[0;32m43\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly allocated memory (32 bytes) at 0x55cb087accf0 for ICsMode in \u001b[38;5;227mread_param.c\u001b[0;36m:\u001b[38;5;192mhash_set\u001b[0;36m:\u001b[0;32m43\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly allocated memory (32 bytes) at 0x55cb087acd20 for WriteICsRngState in \u001b[38;5;227mread_param.c\u001b[0;36m:\u001b[38;5;192mhash_set\u001b[0;36m:\u001b[0;32m43\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly allocated memory (32 bytes) at 0x55cb08796a40 for OutputICsRngState in \u001b[38;5;227mread_param.c\u001b[0;36m:\u001b[38;5;192mhash_set\u001b[0;36m:\u001b[0;32m43\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly allocated memory (32 bytes) at 0x55cb08796a70 for WriteWhiteNoise in \u001b[38;5;227mread_param.c\u001b[0;36m:\u001b[38;5;192mhash_set\u001b[0;36m:\u001b[0;32m43\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly allocated memory (32 bytes) at 0x55cb08796aa0 for OutputWhiteNoise in \u001b[38;5;227mread_param.c\u001b[0;36m:\u001b[38;5;192mhash_set\u001b[0;36m:\u001b[0;32m43\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly allocated memory (32 bytes) at 0x55cb08796ad0 for InputWhiteNoise in \u001b[38;5;227mread_param.c\u001b[0;36m:\u001b[38;5;192mhash_set\u001b[0;36m:\u001b[0;32m43\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly allocated memory (32 bytes) at 0x55cb08796b00 for InputInitialConditions in \u001b[38;5;227mread_param.c\u001b[0;36m:\u001b[38;5;192mhash_set\u001b[0;36m:\u001b[0;32m43\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly allocated memory (32 bytes) at 0x55cb08796b50 for WriteInitialConditions in \u001b[38;5;227mread_param.c\u001b[0;36m:\u001b[38;5;192mhash_set\u001b[0;36m:\u001b[0;32m43\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly allocated memory (32 bytes) at 0x55cb087a4900 for OutputInitialConditions in \u001b[38;5;227mread_param.c\u001b[0;36m:\u001b[38;5;192mhash_set\u001b[0;36m:\u001b[0;32m43\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly allocated memory (32 bytes) at 0x55cb087a4950 for InputPowerSpectrum in \u001b[38;5;227mread_param.c\u001b[0;36m:\u001b[38;5;192mhash_set\u001b[0;36m:\u001b[0;32m43\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly allocated memory (32 bytes) at 0x55cb087a49a0 for RedshiftLPT in \u001b[38;5;227mread_param.c\u001b[0;36m:\u001b[38;5;192mhash_set\u001b[0;36m:\u001b[0;32m43\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly allocated memory (32 bytes) at 0x55cb087a49f0 for WriteLPTSnapshot in \u001b[38;5;227mread_param.c\u001b[0;36m:\u001b[38;5;192mhash_set\u001b[0;36m:\u001b[0;32m43\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly allocated memory (32 bytes) at 0x55cb087a4a40 for OutputLPTSnapshot in \u001b[38;5;227mread_param.c\u001b[0;36m:\u001b[38;5;192mhash_set\u001b[0;36m:\u001b[0;32m43\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly allocated memory (32 bytes) at 0x55cb087a4a90 for WriteLPTDensity in \u001b[38;5;227mread_param.c\u001b[0;36m:\u001b[38;5;192mhash_set\u001b[0;36m:\u001b[0;32m43\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly allocated memory (32 bytes) at 0x55cb087a4ae0 for OutputLPTDensity in \u001b[38;5;227mread_param.c\u001b[0;36m:\u001b[38;5;192mhash_set\u001b[0;36m:\u001b[0;32m43\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly allocated memory (32 bytes) at 0x55cb087a4b30 for WriteLPTDisplacements in \u001b[38;5;227mread_param.c\u001b[0;36m:\u001b[38;5;192mhash_set\u001b[0;36m:\u001b[0;32m43\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly allocated memory (32 bytes) at 0x55cb087a4b80 for OutputPsiLPT1 in \u001b[38;5;227mread_param.c\u001b[0;36m:\u001b[38;5;192mhash_set\u001b[0;36m:\u001b[0;32m43\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly allocated memory (32 bytes) at 0x55cb087a4bd0 for OutputPsiLPT2 in \u001b[38;5;227mread_param.c\u001b[0;36m:\u001b[38;5;192mhash_set\u001b[0;36m:\u001b[0;32m43\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly allocated memory (32 bytes) at 0x55cb087a4c20 for ModulePMCOLA in \u001b[38;5;227mread_param.c\u001b[0;36m:\u001b[38;5;192mhash_set\u001b[0;36m:\u001b[0;32m43\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly allocated memory (32 bytes) at 0x55cb087a4c70 for InputPMCOLASnapshot in \u001b[38;5;227mread_param.c\u001b[0;36m:\u001b[38;5;192mhash_set\u001b[0;36m:\u001b[0;32m43\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly allocated memory (32 bytes) at 0x55cb087a4cc0 for InputPsiLPT1 in \u001b[38;5;227mread_param.c\u001b[0;36m:\u001b[38;5;192mhash_set\u001b[0;36m:\u001b[0;32m43\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly allocated memory (32 bytes) at 0x55cb08792810 for InputPsiLPT2 in \u001b[38;5;227mread_param.c\u001b[0;36m:\u001b[38;5;192mhash_set\u001b[0;36m:\u001b[0;32m43\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly allocated memory (32 bytes) at 0x55cb08792860 for IsNonZeroInitialMomenta in \u001b[38;5;227mread_param.c\u001b[0;36m:\u001b[38;5;192mhash_set\u001b[0;36m:\u001b[0;32m43\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly allocated memory (32 bytes) at 0x55cb087928b0 for InputInitialMomenta in \u001b[38;5;227mread_param.c\u001b[0;36m:\u001b[38;5;192mhash_set\u001b[0;36m:\u001b[0;32m43\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly allocated memory (32 bytes) at 0x55cb08792900 for EvolutionMode in \u001b[38;5;227mread_param.c\u001b[0;36m:\u001b[38;5;192mhash_set\u001b[0;36m:\u001b[0;32m43\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly allocated memory (32 bytes) at 0x55cb08792950 for ParticleMesh in \u001b[38;5;227mread_param.c\u001b[0;36m:\u001b[38;5;192mhash_set\u001b[0;36m:\u001b[0;32m43\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly allocated memory (32 bytes) at 0x55cb087929a0 for TimeStepDistribution in \u001b[38;5;227mread_param.c\u001b[0;36m:\u001b[38;5;192mhash_set\u001b[0;36m:\u001b[0;32m43\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly allocated memory (32 bytes) at 0x55cb087929f0 for ModifiedDiscretization in \u001b[38;5;227mread_param.c\u001b[0;36m:\u001b[38;5;192mhash_set\u001b[0;36m:\u001b[0;32m43\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly allocated memory (32 bytes) at 0x55cb08792a40 for n_LPT in \u001b[38;5;227mread_param.c\u001b[0;36m:\u001b[38;5;192mhash_set\u001b[0;36m:\u001b[0;32m43\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly allocated memory (32 bytes) at 0x55cb08792a90 for n_Tiles in \u001b[38;5;227mread_param.c\u001b[0;36m:\u001b[38;5;192mhash_set\u001b[0;36m:\u001b[0;32m43\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly allocated memory (32 bytes) at 0x55cb08792ae0 for nPairsForceDiagnostic in \u001b[38;5;227mread_param.c\u001b[0;36m:\u001b[38;5;192mhash_set\u001b[0;36m:\u001b[0;32m43\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly allocated memory (32 bytes) at 0x55cb08792b30 for nBinsForceDiagnostic in \u001b[38;5;227mread_param.c\u001b[0;36m:\u001b[38;5;192mhash_set\u001b[0;36m:\u001b[0;32m43\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly allocated memory (32 bytes) at 0x55cb08792b80 for maxTrialsForceDiagnostic in \u001b[38;5;227mread_param.c\u001b[0;36m:\u001b[38;5;192mhash_set\u001b[0;36m:\u001b[0;32m43\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly allocated memory (32 bytes) at 0x55cb08792be0 for OutputForceDiagnostic in \u001b[38;5;227mread_param.c\u001b[0;36m:\u001b[38;5;192mhash_set\u001b[0;36m:\u001b[0;32m43\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly allocated memory (32 bytes) at 0x55cb08798350 for RunForceDiagnostic in \u001b[38;5;227mread_param.c\u001b[0;36m:\u001b[38;5;192mhash_set\u001b[0;36m:\u001b[0;32m43\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly allocated memory (32 bytes) at 0x55cb087983a0 for WriteSnapshots in \u001b[38;5;227mread_param.c\u001b[0;36m:\u001b[38;5;192mhash_set\u001b[0;36m:\u001b[0;32m43\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly allocated memory (32 bytes) at 0x55cb087983f0 for OutputSnapshotsBase in \u001b[38;5;227mread_param.c\u001b[0;36m:\u001b[38;5;192mhash_set\u001b[0;36m:\u001b[0;32m43\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly allocated memory (32 bytes) at 0x55cb08798440 for OutputSnapshotsExt in \u001b[38;5;227mread_param.c\u001b[0;36m:\u001b[38;5;192mhash_set\u001b[0;36m:\u001b[0;32m43\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly allocated memory (32 bytes) at 0x55cb08798490 for WriteDensities in \u001b[38;5;227mread_param.c\u001b[0;36m:\u001b[38;5;192mhash_set\u001b[0;36m:\u001b[0;32m43\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly allocated memory (32 bytes) at 0x55cb087984e0 for OutputDensitiesBase in \u001b[38;5;227mread_param.c\u001b[0;36m:\u001b[38;5;192mhash_set\u001b[0;36m:\u001b[0;32m43\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly allocated memory (32 bytes) at 0x55cb08798530 for OutputDensitiesExt in \u001b[38;5;227mread_param.c\u001b[0;36m:\u001b[38;5;192mhash_set\u001b[0;36m:\u001b[0;32m43\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly allocated memory (32 bytes) at 0x55cb08798580 for RedshiftFCs in \u001b[38;5;227mread_param.c\u001b[0;36m:\u001b[38;5;192mhash_set\u001b[0;36m:\u001b[0;32m43\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly allocated memory (32 bytes) at 0x55cb087985d0 for WriteFinalSnapshot in \u001b[38;5;227mread_param.c\u001b[0;36m:\u001b[38;5;192mhash_set\u001b[0;36m:\u001b[0;32m43\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly allocated memory (32 bytes) at 0x55cb08798620 for OutputFinalSnapshot in \u001b[38;5;227mread_param.c\u001b[0;36m:\u001b[38;5;192mhash_set\u001b[0;36m:\u001b[0;32m43\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly allocated memory (32 bytes) at 0x55cb08798670 for WriteFinalDensity in \u001b[38;5;227mread_param.c\u001b[0;36m:\u001b[38;5;192mhash_set\u001b[0;36m:\u001b[0;32m43\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly allocated memory (32 bytes) at 0x55cb087986c0 for OutputFinalDensity in \u001b[38;5;227mread_param.c\u001b[0;36m:\u001b[38;5;192mhash_set\u001b[0;36m:\u001b[0;32m43\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly allocated memory (32 bytes) at 0x55cb08798710 for WriteReferenceFrame in \u001b[38;5;227mread_param.c\u001b[0;36m:\u001b[38;5;192mhash_set\u001b[0;36m:\u001b[0;32m43\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly allocated memory (32 bytes) at 0x55cb08798760 for OutputMomentaBase in \u001b[38;5;227mread_param.c\u001b[0;36m:\u001b[38;5;192mhash_set\u001b[0;36m:\u001b[0;32m43\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly allocated memory (32 bytes) at 0x55cb087987b0 for OutputMomentaExt in \u001b[38;5;227mread_param.c\u001b[0;36m:\u001b[38;5;192mhash_set\u001b[0;36m:\u001b[0;32m43\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly allocated memory (32 bytes) at 0x55cb08796e90 for ReadReferenceFrame in \u001b[38;5;227mread_param.c\u001b[0;36m:\u001b[38;5;192mhash_set\u001b[0;36m:\u001b[0;32m43\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly allocated memory (32 bytes) at 0x55cb08796ee0 for InputMomentaBase in \u001b[38;5;227mread_param.c\u001b[0;36m:\u001b[38;5;192mhash_set\u001b[0;36m:\u001b[0;32m43\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly allocated memory (32 bytes) at 0x55cb08796f30 for InputMomentaExt in \u001b[38;5;227mread_param.c\u001b[0;36m:\u001b[38;5;192mhash_set\u001b[0;36m:\u001b[0;32m43\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly allocated memory (32 bytes) at 0x55cb08796f80 for NumberOfTilesPerDimension in \u001b[38;5;227mread_param.c\u001b[0;36m:\u001b[38;5;192mhash_set\u001b[0;36m:\u001b[0;32m43\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly allocated memory (32 bytes) at 0x55cb08796fe0 for NumberOfParticlesInBuffer in \u001b[38;5;227mread_param.c\u001b[0;36m:\u001b[38;5;192mhash_set\u001b[0;36m:\u001b[0;32m43\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly allocated memory (32 bytes) at 0x55cb08797040 for OutputLPTPotential1 in \u001b[38;5;227mread_param.c\u001b[0;36m:\u001b[38;5;192mhash_set\u001b[0;36m:\u001b[0;32m43\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly allocated memory (32 bytes) at 0x55cb08797090 for OutputLPTPotential2 in \u001b[38;5;227mread_param.c\u001b[0;36m:\u001b[38;5;192mhash_set\u001b[0;36m:\u001b[0;32m43\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly allocated memory (32 bytes) at 0x55cb087970e0 for OutputTilesBase in \u001b[38;5;227mread_param.c\u001b[0;36m:\u001b[38;5;192mhash_set\u001b[0;36m:\u001b[0;32m43\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly allocated memory (32 bytes) at 0x55cb08797130 for OutputTilesExt in \u001b[38;5;227mread_param.c\u001b[0;36m:\u001b[38;5;192mhash_set\u001b[0;36m:\u001b[0;32m43\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly allocated memory (32 bytes) at 0x55cb08797180 for ModuleRSD in \u001b[38;5;227mread_param.c\u001b[0;36m:\u001b[38;5;192mhash_set\u001b[0;36m:\u001b[0;32m43\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly allocated memory (32 bytes) at 0x55cb087971d0 for DoNonLinearMapping in \u001b[38;5;227mread_param.c\u001b[0;36m:\u001b[38;5;192mhash_set\u001b[0;36m:\u001b[0;32m43\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly allocated memory (32 bytes) at 0x55cb08797220 for vobs0 in \u001b[38;5;227mread_param.c\u001b[0;36m:\u001b[38;5;192mhash_set\u001b[0;36m:\u001b[0;32m43\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly allocated memory (32 bytes) at 0x55cb08797270 for vobs1 in \u001b[38;5;227mread_param.c\u001b[0;36m:\u001b[38;5;192mhash_set\u001b[0;36m:\u001b[0;32m43\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly allocated memory (32 bytes) at 0x55cb087972c0 for vobs2 in \u001b[38;5;227mread_param.c\u001b[0;36m:\u001b[38;5;192mhash_set\u001b[0;36m:\u001b[0;32m43\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly allocated memory (32 bytes) at 0x55cb08797310 for alpha1RSD in \u001b[38;5;227mread_param.c\u001b[0;36m:\u001b[38;5;192mhash_set\u001b[0;36m:\u001b[0;32m43\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly allocated memory (32 bytes) at 0x55cb08797360 for DoLPTSplit in \u001b[38;5;227mread_param.c\u001b[0;36m:\u001b[38;5;192mhash_set\u001b[0;36m:\u001b[0;32m43\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly allocated memory (32 bytes) at 0x55cb087973b0 for alpha2RSD in \u001b[38;5;227mread_param.c\u001b[0;36m:\u001b[38;5;192mhash_set\u001b[0;36m:\u001b[0;32m43\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly allocated memory (32 bytes) at 0x55cb08797400 for WriteRSSnapshot in \u001b[38;5;227mread_param.c\u001b[0;36m:\u001b[38;5;192mhash_set\u001b[0;36m:\u001b[0;32m43\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly allocated memory (32 bytes) at 0x55cb08797450 for OutputRSSnapshot in \u001b[38;5;227mread_param.c\u001b[0;36m:\u001b[38;5;192mhash_set\u001b[0;36m:\u001b[0;32m43\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly allocated memory (32 bytes) at 0x55cb087974a0 for WriteRSDensity in \u001b[38;5;227mread_param.c\u001b[0;36m:\u001b[38;5;192mhash_set\u001b[0;36m:\u001b[0;32m43\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly allocated memory (32 bytes) at 0x55cb087974f0 for OutputRSDensity in \u001b[38;5;227mread_param.c\u001b[0;36m:\u001b[38;5;192mhash_set\u001b[0;36m:\u001b[0;32m43\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly allocated memory (32 bytes) at 0x55cb08797540 for ModuleMocks in \u001b[38;5;227mread_param.c\u001b[0;36m:\u001b[38;5;192mhash_set\u001b[0;36m:\u001b[0;32m43\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly allocated memory (32 bytes) at 0x55cb08797590 for InputRngStateMocks in \u001b[38;5;227mread_param.c\u001b[0;36m:\u001b[38;5;192mhash_set\u001b[0;36m:\u001b[0;32m43\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly allocated memory (32 bytes) at 0x55cb087975e0 for OutputRngStateMocks in \u001b[38;5;227mread_param.c\u001b[0;36m:\u001b[38;5;192mhash_set\u001b[0;36m:\u001b[0;32m43\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly allocated memory (32 bytes) at 0x55cb08797630 for WriteMocksRngState in \u001b[38;5;227mread_param.c\u001b[0;36m:\u001b[38;5;192mhash_set\u001b[0;36m:\u001b[0;32m43\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly allocated memory (32 bytes) at 0x55cb08797680 for OutputMocksRngState in \u001b[38;5;227mread_param.c\u001b[0;36m:\u001b[38;5;192mhash_set\u001b[0;36m:\u001b[0;32m43\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly allocated memory (32 bytes) at 0x55cb087976d0 for NoiseModel in \u001b[38;5;227mread_param.c\u001b[0;36m:\u001b[38;5;192mhash_set\u001b[0;36m:\u001b[0;32m43\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly allocated memory (32 bytes) at 0x55cb08797720 for NumberOfNoiseRealizations in \u001b[38;5;227mread_param.c\u001b[0;36m:\u001b[38;5;192mhash_set\u001b[0;36m:\u001b[0;32m43\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly allocated memory (32 bytes) at 0x55cb0883abb0 for InputDensityMocks in \u001b[38;5;227mread_param.c\u001b[0;36m:\u001b[38;5;192mhash_set\u001b[0;36m:\u001b[0;32m43\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly allocated memory (32 bytes) at 0x55cb0883abe0 for InputSurveyGeometry in \u001b[38;5;227mread_param.c\u001b[0;36m:\u001b[38;5;192mhash_set\u001b[0;36m:\u001b[0;32m43\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly allocated memory (32 bytes) at 0x55cb0883ac30 for InputSummaryStatskGrid in \u001b[38;5;227mread_param.c\u001b[0;36m:\u001b[38;5;192mhash_set\u001b[0;36m:\u001b[0;32m43\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly allocated memory (32 bytes) at 0x55cb0883ac80 for WriteMocks in \u001b[38;5;227mread_param.c\u001b[0;36m:\u001b[38;5;192mhash_set\u001b[0;36m:\u001b[0;32m43\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly allocated memory (32 bytes) at 0x55cb0883acd0 for OutputMockBase in \u001b[38;5;227mread_param.c\u001b[0;36m:\u001b[38;5;192mhash_set\u001b[0;36m:\u001b[0;32m43\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly allocated memory (32 bytes) at 0x55cb0883ad20 for OutputMockExt in \u001b[38;5;227mread_param.c\u001b[0;36m:\u001b[38;5;192mhash_set\u001b[0;36m:\u001b[0;32m43\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly allocated memory (32 bytes) at 0x55cb0883ad70 for WriteSummaryStats in \u001b[38;5;227mread_param.c\u001b[0;36m:\u001b[38;5;192mhash_set\u001b[0;36m:\u001b[0;32m43\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly allocated memory (32 bytes) at 0x55cb0883adc0 for OutputSummaryStats in \u001b[38;5;227mread_param.c\u001b[0;36m:\u001b[38;5;192mhash_set\u001b[0;36m:\u001b[0;32m43\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly allocated memory (32 bytes) at 0x55cb0883ae10 for h in \u001b[38;5;227mread_param.c\u001b[0;36m:\u001b[38;5;192mhash_set\u001b[0;36m:\u001b[0;32m43\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly allocated memory (32 bytes) at 0x55cb0883ae60 for Omega_r in \u001b[38;5;227mread_param.c\u001b[0;36m:\u001b[38;5;192mhash_set\u001b[0;36m:\u001b[0;32m43\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly allocated memory (32 bytes) at 0x55cb0883aeb0 for Omega_q in \u001b[38;5;227mread_param.c\u001b[0;36m:\u001b[38;5;192mhash_set\u001b[0;36m:\u001b[0;32m43\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly allocated memory (32 bytes) at 0x55cb0883af00 for Omega_b in \u001b[38;5;227mread_param.c\u001b[0;36m:\u001b[38;5;192mhash_set\u001b[0;36m:\u001b[0;32m43\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly allocated memory (32 bytes) at 0x55cb0883af50 for Omega_m in \u001b[38;5;227mread_param.c\u001b[0;36m:\u001b[38;5;192mhash_set\u001b[0;36m:\u001b[0;32m43\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly allocated memory (32 bytes) at 0x55cb0883afa0 for Omega_k in \u001b[38;5;227mread_param.c\u001b[0;36m:\u001b[38;5;192mhash_set\u001b[0;36m:\u001b[0;32m43\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly allocated memory (32 bytes) at 0x55cb0883aff0 for n_s in \u001b[38;5;227mread_param.c\u001b[0;36m:\u001b[38;5;192mhash_set\u001b[0;36m:\u001b[0;32m43\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly allocated memory (32 bytes) at 0x55cb0883b040 for sigma8 in \u001b[38;5;227mread_param.c\u001b[0;36m:\u001b[38;5;192mhash_set\u001b[0;36m:\u001b[0;32m43\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly allocated memory (32 bytes) at 0x55cb0883b090 for w0_fld in \u001b[38;5;227mread_param.c\u001b[0;36m:\u001b[38;5;192mhash_set\u001b[0;36m:\u001b[0;32m43\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly allocated memory (32 bytes) at 0x55cb0883b0e0 for wa_fld in \u001b[38;5;227mread_param.c\u001b[0;36m:\u001b[38;5;192mhash_set\u001b[0;36m:\u001b[0;32m43\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]==|\u001b[38;5;246mFound tag: 'SnapFormat'.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]==|\u001b[38;5;246mFound tag: 'NumFilesPerSnapshot'.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]==|\u001b[38;5;246mFound tag: 'ModuleLPT'.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]==|\u001b[38;5;246mFound tag: 'InputRngStateLPT'.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]==|\u001b[38;5;246mFound tag: 'OutputRngStateLPT'.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]==|\u001b[38;5;246mFound tag: 'Particles'.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]==|\u001b[38;5;246mFound tag: 'Mesh'.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]==|\u001b[38;5;246mFound tag: 'BoxSize'.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]==|\u001b[38;5;246mFound tag: 'corner0'.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]==|\u001b[38;5;246mFound tag: 'corner1'.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]==|\u001b[38;5;246mFound tag: 'corner2'.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]==|\u001b[38;5;246mFound tag: 'ICsMode'.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]==|\u001b[38;5;246mFound tag: 'WriteICsRngState'.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]==|\u001b[38;5;246mFound tag: 'OutputICsRngState'.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]==|\u001b[38;5;246mFound tag: 'WriteWhiteNoise'.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]==|\u001b[38;5;246mFound tag: 'OutputWhiteNoise'.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]==|\u001b[38;5;246mFound tag: 'InputWhiteNoise'.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]==|\u001b[38;5;246mFound tag: 'InputInitialConditions'.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]==|\u001b[38;5;246mFound tag: 'WriteInitialConditions'.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]==|\u001b[38;5;246mFound tag: 'OutputInitialConditions'.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]==|\u001b[38;5;246mFound tag: 'InputPowerSpectrum'.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]==|\u001b[38;5;246mFound tag: 'RedshiftLPT'.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]==|\u001b[38;5;246mFound tag: 'WriteLPTSnapshot'.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]==|\u001b[38;5;246mFound tag: 'OutputLPTSnapshot'.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]==|\u001b[38;5;246mFound tag: 'WriteLPTDensity'.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]==|\u001b[38;5;246mFound tag: 'OutputLPTDensity'.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]==|\u001b[38;5;246mFound tag: 'WriteLPTDisplacements'.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]==|\u001b[38;5;246mFound tag: 'OutputPsiLPT1'.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]==|\u001b[38;5;246mFound tag: 'OutputPsiLPT2'.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]==|\u001b[38;5;246mFound tag: 'ModulePMCOLA'.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]==|\u001b[38;5;246mFound tag: 'InputPMCOLASnapshot'.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]==|\u001b[38;5;246mFound tag: 'InputPsiLPT1'.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]==|\u001b[38;5;246mFound tag: 'InputPsiLPT2'.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]==|\u001b[38;5;246mFound tag: 'IsNonZeroInitialMomenta'.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]==|\u001b[38;5;246mFound tag: 'InputInitialMomenta'.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]==|\u001b[38;5;246mFound tag: 'EvolutionMode'.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]==|\u001b[38;5;246mFound tag: 'ParticleMesh'.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]==|\u001b[38;5;246mFound tag: 'TimeStepDistribution'.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]==|\u001b[38;5;246mFound tag: 'ModifiedDiscretization'.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]==|\u001b[38;5;246mFound tag: 'n_LPT'.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]==|\u001b[38;5;246mFound tag: 'WriteSnapshots'.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]==|\u001b[38;5;246mFound tag: 'OutputSnapshotsBase'.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]==|\u001b[38;5;246mFound tag: 'OutputSnapshotsExt'.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]==|\u001b[38;5;246mFound tag: 'WriteDensities'.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]==|\u001b[38;5;246mFound tag: 'OutputDensitiesBase'.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]==|\u001b[38;5;246mFound tag: 'OutputDensitiesExt'.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]==|\u001b[38;5;246mFound tag: 'RedshiftFCs'.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]==|\u001b[38;5;246mFound tag: 'WriteFinalSnapshot'.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]==|\u001b[38;5;246mFound tag: 'OutputFinalSnapshot'.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]==|\u001b[38;5;246mFound tag: 'WriteFinalDensity'.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]==|\u001b[38;5;246mFound tag: 'OutputFinalDensity'.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]==|\u001b[38;5;246mFound tag: 'WriteReferenceFrame'.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]==|\u001b[38;5;246mFound tag: 'OutputMomentaBase'.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]==|\u001b[38;5;246mFound tag: 'OutputMomentaExt'.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]==|\u001b[38;5;246mFound tag: 'ReadReferenceFrame'.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]==|\u001b[38;5;246mFound tag: 'InputMomentaBase'.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]==|\u001b[38;5;246mFound tag: 'InputMomentaExt'.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]==|\u001b[38;5;246mFound tag: 'NumberOfTilesPerDimension'.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]==|\u001b[38;5;246mFound tag: 'NumberOfParticlesInBuffer'.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]==|\u001b[38;5;246mFound tag: 'OutputLPTPotential1'.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]==|\u001b[38;5;246mFound tag: 'OutputLPTPotential2'.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]==|\u001b[38;5;246mFound tag: 'OutputTilesBase'.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]==|\u001b[38;5;246mFound tag: 'OutputTilesExt'.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]==|\u001b[38;5;246mFound tag: 'n_Tiles'.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]==|\u001b[38;5;246mFound tag: 'nPairsForceDiagnostic'.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]==|\u001b[38;5;246mFound tag: 'nBinsForceDiagnostic'.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]==|\u001b[38;5;246mFound tag: 'maxTrialsForceDiagnostic'.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]==|\u001b[38;5;246mFound tag: 'OutputForceDiagnostic'.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]==|\u001b[38;5;246mFound tag: 'RunForceDiagnostic'.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]==|\u001b[38;5;246mFound tag: 'ModuleRSD'.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]==|\u001b[38;5;246mFound tag: 'DoNonLinearMapping'.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]==|\u001b[38;5;246mFound tag: 'vobs0'.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]==|\u001b[38;5;246mFound tag: 'vobs1'.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]==|\u001b[38;5;246mFound tag: 'vobs2'.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]==|\u001b[38;5;246mFound tag: 'alpha1RSD'.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]==|\u001b[38;5;246mFound tag: 'DoLPTSplit'.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]==|\u001b[38;5;246mFound tag: 'alpha2RSD'.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]==|\u001b[38;5;246mFound tag: 'WriteRSSnapshot'.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]==|\u001b[38;5;246mFound tag: 'OutputRSSnapshot'.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]==|\u001b[38;5;246mFound tag: 'WriteRSDensity'.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]==|\u001b[38;5;246mFound tag: 'OutputRSDensity'.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]==|\u001b[38;5;246mFound tag: 'ModuleMocks'.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]==|\u001b[38;5;246mFound tag: 'InputRngStateMocks'.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]==|\u001b[38;5;246mFound tag: 'OutputRngStateMocks'.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]==|\u001b[38;5;246mFound tag: 'WriteMocksRngState'.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]==|\u001b[38;5;246mFound tag: 'OutputMocksRngState'.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]==|\u001b[38;5;246mFound tag: 'NoiseModel'.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]==|\u001b[38;5;246mFound tag: 'NumberOfNoiseRealizations'.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]==|\u001b[38;5;246mFound tag: 'InputDensityMocks'.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]==|\u001b[38;5;246mFound tag: 'InputSurveyGeometry'.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]==|\u001b[38;5;246mFound tag: 'InputSummaryStatskGrid'.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]==|\u001b[38;5;246mFound tag: 'WriteMocks'.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]==|\u001b[38;5;246mFound tag: 'OutputMockBase'.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]==|\u001b[38;5;246mFound tag: 'OutputMockExt'.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]==|\u001b[38;5;246mFound tag: 'WriteSummaryStats'.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]==|\u001b[38;5;246mFound tag: 'OutputSummaryStats'.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]==|\u001b[38;5;246mFound tag: 'h'.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]==|\u001b[38;5;246mFound tag: 'Omega_r'.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]==|\u001b[38;5;246mFound tag: 'Omega_q'.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]==|\u001b[38;5;246mFound tag: 'Omega_b'.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]==|\u001b[38;5;246mFound tag: 'Omega_m'.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]==|\u001b[38;5;246mFound tag: 'Omega_k'.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]==|\u001b[38;5;246mFound tag: 'n_s'.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]==|\u001b[38;5;246mFound tag: 'sigma8'.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]==|\u001b[38;5;246mFound tag: 'w0_fld'.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]==|\u001b[38;5;246mFound tag: 'wa_fld'.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]==|\u001b[38;5;246mReached the end of the parameter file.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0879f020 for SnapFormat in \u001b[38;5;227mread_param.c\u001b[0;36m:\u001b[38;5;192mhash_unset\u001b[0;36m:\u001b[0;32m71\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb087ba180 for NumFilesPerSnapshot in \u001b[38;5;227mread_param.c\u001b[0;36m:\u001b[38;5;192mhash_unset\u001b[0;36m:\u001b[0;32m71\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08797940 for ModuleLPT in \u001b[38;5;227mread_param.c\u001b[0;36m:\u001b[38;5;192mhash_unset\u001b[0;36m:\u001b[0;32m71\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08797970 for InputRngStateLPT in \u001b[38;5;227mread_param.c\u001b[0;36m:\u001b[38;5;192mhash_unset\u001b[0;36m:\u001b[0;32m71\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08799d70 for OutputRngStateLPT in \u001b[38;5;227mread_param.c\u001b[0;36m:\u001b[38;5;192mhash_unset\u001b[0;36m:\u001b[0;32m71\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08799da0 for Particles in \u001b[38;5;227mread_param.c\u001b[0;36m:\u001b[38;5;192mhash_unset\u001b[0;36m:\u001b[0;32m71\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08799dd0 for Mesh in \u001b[38;5;227mread_param.c\u001b[0;36m:\u001b[38;5;192mhash_unset\u001b[0;36m:\u001b[0;32m71\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08799e00 for BoxSize in \u001b[38;5;227mread_param.c\u001b[0;36m:\u001b[38;5;192mhash_unset\u001b[0;36m:\u001b[0;32m71\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb087acc60 for corner0 in \u001b[38;5;227mread_param.c\u001b[0;36m:\u001b[38;5;192mhash_unset\u001b[0;36m:\u001b[0;32m71\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb087acc90 for corner1 in \u001b[38;5;227mread_param.c\u001b[0;36m:\u001b[38;5;192mhash_unset\u001b[0;36m:\u001b[0;32m71\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb087accc0 for corner2 in \u001b[38;5;227mread_param.c\u001b[0;36m:\u001b[38;5;192mhash_unset\u001b[0;36m:\u001b[0;32m71\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb087accf0 for ICsMode in \u001b[38;5;227mread_param.c\u001b[0;36m:\u001b[38;5;192mhash_unset\u001b[0;36m:\u001b[0;32m71\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb087acd20 for WriteICsRngState in \u001b[38;5;227mread_param.c\u001b[0;36m:\u001b[38;5;192mhash_unset\u001b[0;36m:\u001b[0;32m71\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08796a40 for OutputICsRngState in \u001b[38;5;227mread_param.c\u001b[0;36m:\u001b[38;5;192mhash_unset\u001b[0;36m:\u001b[0;32m71\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08796a70 for WriteWhiteNoise in \u001b[38;5;227mread_param.c\u001b[0;36m:\u001b[38;5;192mhash_unset\u001b[0;36m:\u001b[0;32m71\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08796aa0 for OutputWhiteNoise in \u001b[38;5;227mread_param.c\u001b[0;36m:\u001b[38;5;192mhash_unset\u001b[0;36m:\u001b[0;32m71\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08796ad0 for InputWhiteNoise in \u001b[38;5;227mread_param.c\u001b[0;36m:\u001b[38;5;192mhash_unset\u001b[0;36m:\u001b[0;32m71\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08796b00 for InputInitialConditions in \u001b[38;5;227mread_param.c\u001b[0;36m:\u001b[38;5;192mhash_unset\u001b[0;36m:\u001b[0;32m71\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08796b50 for WriteInitialConditions in \u001b[38;5;227mread_param.c\u001b[0;36m:\u001b[38;5;192mhash_unset\u001b[0;36m:\u001b[0;32m71\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb087a4900 for OutputInitialConditions in \u001b[38;5;227mread_param.c\u001b[0;36m:\u001b[38;5;192mhash_unset\u001b[0;36m:\u001b[0;32m71\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb087a4950 for InputPowerSpectrum in \u001b[38;5;227mread_param.c\u001b[0;36m:\u001b[38;5;192mhash_unset\u001b[0;36m:\u001b[0;32m71\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb087a49a0 for RedshiftLPT in \u001b[38;5;227mread_param.c\u001b[0;36m:\u001b[38;5;192mhash_unset\u001b[0;36m:\u001b[0;32m71\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb087a49f0 for WriteLPTSnapshot in \u001b[38;5;227mread_param.c\u001b[0;36m:\u001b[38;5;192mhash_unset\u001b[0;36m:\u001b[0;32m71\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb087a4a40 for OutputLPTSnapshot in \u001b[38;5;227mread_param.c\u001b[0;36m:\u001b[38;5;192mhash_unset\u001b[0;36m:\u001b[0;32m71\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb087a4a90 for WriteLPTDensity in \u001b[38;5;227mread_param.c\u001b[0;36m:\u001b[38;5;192mhash_unset\u001b[0;36m:\u001b[0;32m71\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb087a4ae0 for OutputLPTDensity in \u001b[38;5;227mread_param.c\u001b[0;36m:\u001b[38;5;192mhash_unset\u001b[0;36m:\u001b[0;32m71\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb087a4b30 for WriteLPTDisplacements in \u001b[38;5;227mread_param.c\u001b[0;36m:\u001b[38;5;192mhash_unset\u001b[0;36m:\u001b[0;32m71\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb087a4b80 for OutputPsiLPT1 in \u001b[38;5;227mread_param.c\u001b[0;36m:\u001b[38;5;192mhash_unset\u001b[0;36m:\u001b[0;32m71\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb087a4bd0 for OutputPsiLPT2 in \u001b[38;5;227mread_param.c\u001b[0;36m:\u001b[38;5;192mhash_unset\u001b[0;36m:\u001b[0;32m71\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb087a4c20 for ModulePMCOLA in \u001b[38;5;227mread_param.c\u001b[0;36m:\u001b[38;5;192mhash_unset\u001b[0;36m:\u001b[0;32m71\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb087a4c70 for InputPMCOLASnapshot in \u001b[38;5;227mread_param.c\u001b[0;36m:\u001b[38;5;192mhash_unset\u001b[0;36m:\u001b[0;32m71\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb087a4cc0 for InputPsiLPT1 in \u001b[38;5;227mread_param.c\u001b[0;36m:\u001b[38;5;192mhash_unset\u001b[0;36m:\u001b[0;32m71\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08792810 for InputPsiLPT2 in \u001b[38;5;227mread_param.c\u001b[0;36m:\u001b[38;5;192mhash_unset\u001b[0;36m:\u001b[0;32m71\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08792860 for IsNonZeroInitialMomenta in \u001b[38;5;227mread_param.c\u001b[0;36m:\u001b[38;5;192mhash_unset\u001b[0;36m:\u001b[0;32m71\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb087928b0 for InputInitialMomenta in \u001b[38;5;227mread_param.c\u001b[0;36m:\u001b[38;5;192mhash_unset\u001b[0;36m:\u001b[0;32m71\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08792900 for EvolutionMode in \u001b[38;5;227mread_param.c\u001b[0;36m:\u001b[38;5;192mhash_unset\u001b[0;36m:\u001b[0;32m71\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08792950 for ParticleMesh in \u001b[38;5;227mread_param.c\u001b[0;36m:\u001b[38;5;192mhash_unset\u001b[0;36m:\u001b[0;32m71\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb087929a0 for TimeStepDistribution in \u001b[38;5;227mread_param.c\u001b[0;36m:\u001b[38;5;192mhash_unset\u001b[0;36m:\u001b[0;32m71\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb087929f0 for ModifiedDiscretization in \u001b[38;5;227mread_param.c\u001b[0;36m:\u001b[38;5;192mhash_unset\u001b[0;36m:\u001b[0;32m71\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08792a40 for n_LPT in \u001b[38;5;227mread_param.c\u001b[0;36m:\u001b[38;5;192mhash_unset\u001b[0;36m:\u001b[0;32m71\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08792a90 for n_Tiles in \u001b[38;5;227mread_param.c\u001b[0;36m:\u001b[38;5;192mhash_unset\u001b[0;36m:\u001b[0;32m71\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08792ae0 for nPairsForceDiagnostic in \u001b[38;5;227mread_param.c\u001b[0;36m:\u001b[38;5;192mhash_unset\u001b[0;36m:\u001b[0;32m71\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08792b30 for nBinsForceDiagnostic in \u001b[38;5;227mread_param.c\u001b[0;36m:\u001b[38;5;192mhash_unset\u001b[0;36m:\u001b[0;32m71\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08792b80 for maxTrialsForceDiagnostic in \u001b[38;5;227mread_param.c\u001b[0;36m:\u001b[38;5;192mhash_unset\u001b[0;36m:\u001b[0;32m71\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08792be0 for OutputForceDiagnostic in \u001b[38;5;227mread_param.c\u001b[0;36m:\u001b[38;5;192mhash_unset\u001b[0;36m:\u001b[0;32m71\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08798350 for RunForceDiagnostic in \u001b[38;5;227mread_param.c\u001b[0;36m:\u001b[38;5;192mhash_unset\u001b[0;36m:\u001b[0;32m71\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb087983a0 for WriteSnapshots in \u001b[38;5;227mread_param.c\u001b[0;36m:\u001b[38;5;192mhash_unset\u001b[0;36m:\u001b[0;32m71\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb087983f0 for OutputSnapshotsBase in \u001b[38;5;227mread_param.c\u001b[0;36m:\u001b[38;5;192mhash_unset\u001b[0;36m:\u001b[0;32m71\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08798440 for OutputSnapshotsExt in \u001b[38;5;227mread_param.c\u001b[0;36m:\u001b[38;5;192mhash_unset\u001b[0;36m:\u001b[0;32m71\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08798490 for WriteDensities in \u001b[38;5;227mread_param.c\u001b[0;36m:\u001b[38;5;192mhash_unset\u001b[0;36m:\u001b[0;32m71\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb087984e0 for OutputDensitiesBase in \u001b[38;5;227mread_param.c\u001b[0;36m:\u001b[38;5;192mhash_unset\u001b[0;36m:\u001b[0;32m71\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08798530 for OutputDensitiesExt in \u001b[38;5;227mread_param.c\u001b[0;36m:\u001b[38;5;192mhash_unset\u001b[0;36m:\u001b[0;32m71\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08798580 for RedshiftFCs in \u001b[38;5;227mread_param.c\u001b[0;36m:\u001b[38;5;192mhash_unset\u001b[0;36m:\u001b[0;32m71\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb087985d0 for WriteFinalSnapshot in \u001b[38;5;227mread_param.c\u001b[0;36m:\u001b[38;5;192mhash_unset\u001b[0;36m:\u001b[0;32m71\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08798620 for OutputFinalSnapshot in \u001b[38;5;227mread_param.c\u001b[0;36m:\u001b[38;5;192mhash_unset\u001b[0;36m:\u001b[0;32m71\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08798670 for WriteFinalDensity in \u001b[38;5;227mread_param.c\u001b[0;36m:\u001b[38;5;192mhash_unset\u001b[0;36m:\u001b[0;32m71\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb087986c0 for OutputFinalDensity in \u001b[38;5;227mread_param.c\u001b[0;36m:\u001b[38;5;192mhash_unset\u001b[0;36m:\u001b[0;32m71\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08798710 for WriteReferenceFrame in \u001b[38;5;227mread_param.c\u001b[0;36m:\u001b[38;5;192mhash_unset\u001b[0;36m:\u001b[0;32m71\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08798760 for OutputMomentaBase in \u001b[38;5;227mread_param.c\u001b[0;36m:\u001b[38;5;192mhash_unset\u001b[0;36m:\u001b[0;32m71\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb087987b0 for OutputMomentaExt in \u001b[38;5;227mread_param.c\u001b[0;36m:\u001b[38;5;192mhash_unset\u001b[0;36m:\u001b[0;32m71\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08796e90 for ReadReferenceFrame in \u001b[38;5;227mread_param.c\u001b[0;36m:\u001b[38;5;192mhash_unset\u001b[0;36m:\u001b[0;32m71\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08796ee0 for InputMomentaBase in \u001b[38;5;227mread_param.c\u001b[0;36m:\u001b[38;5;192mhash_unset\u001b[0;36m:\u001b[0;32m71\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08796f30 for InputMomentaExt in \u001b[38;5;227mread_param.c\u001b[0;36m:\u001b[38;5;192mhash_unset\u001b[0;36m:\u001b[0;32m71\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08796f80 for NumberOfTilesPerDimension in \u001b[38;5;227mread_param.c\u001b[0;36m:\u001b[38;5;192mhash_unset\u001b[0;36m:\u001b[0;32m71\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08796fe0 for NumberOfParticlesInBuffer in \u001b[38;5;227mread_param.c\u001b[0;36m:\u001b[38;5;192mhash_unset\u001b[0;36m:\u001b[0;32m71\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08797040 for OutputLPTPotential1 in \u001b[38;5;227mread_param.c\u001b[0;36m:\u001b[38;5;192mhash_unset\u001b[0;36m:\u001b[0;32m71\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08797090 for OutputLPTPotential2 in \u001b[38;5;227mread_param.c\u001b[0;36m:\u001b[38;5;192mhash_unset\u001b[0;36m:\u001b[0;32m71\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb087970e0 for OutputTilesBase in \u001b[38;5;227mread_param.c\u001b[0;36m:\u001b[38;5;192mhash_unset\u001b[0;36m:\u001b[0;32m71\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08797130 for OutputTilesExt in \u001b[38;5;227mread_param.c\u001b[0;36m:\u001b[38;5;192mhash_unset\u001b[0;36m:\u001b[0;32m71\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08797180 for ModuleRSD in \u001b[38;5;227mread_param.c\u001b[0;36m:\u001b[38;5;192mhash_unset\u001b[0;36m:\u001b[0;32m71\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb087971d0 for DoNonLinearMapping in \u001b[38;5;227mread_param.c\u001b[0;36m:\u001b[38;5;192mhash_unset\u001b[0;36m:\u001b[0;32m71\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08797220 for vobs0 in \u001b[38;5;227mread_param.c\u001b[0;36m:\u001b[38;5;192mhash_unset\u001b[0;36m:\u001b[0;32m71\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08797270 for vobs1 in \u001b[38;5;227mread_param.c\u001b[0;36m:\u001b[38;5;192mhash_unset\u001b[0;36m:\u001b[0;32m71\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb087972c0 for vobs2 in \u001b[38;5;227mread_param.c\u001b[0;36m:\u001b[38;5;192mhash_unset\u001b[0;36m:\u001b[0;32m71\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08797310 for alpha1RSD in \u001b[38;5;227mread_param.c\u001b[0;36m:\u001b[38;5;192mhash_unset\u001b[0;36m:\u001b[0;32m71\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08797360 for DoLPTSplit in \u001b[38;5;227mread_param.c\u001b[0;36m:\u001b[38;5;192mhash_unset\u001b[0;36m:\u001b[0;32m71\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb087973b0 for alpha2RSD in \u001b[38;5;227mread_param.c\u001b[0;36m:\u001b[38;5;192mhash_unset\u001b[0;36m:\u001b[0;32m71\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08797400 for WriteRSSnapshot in \u001b[38;5;227mread_param.c\u001b[0;36m:\u001b[38;5;192mhash_unset\u001b[0;36m:\u001b[0;32m71\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08797450 for OutputRSSnapshot in \u001b[38;5;227mread_param.c\u001b[0;36m:\u001b[38;5;192mhash_unset\u001b[0;36m:\u001b[0;32m71\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb087974a0 for WriteRSDensity in \u001b[38;5;227mread_param.c\u001b[0;36m:\u001b[38;5;192mhash_unset\u001b[0;36m:\u001b[0;32m71\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb087974f0 for OutputRSDensity in \u001b[38;5;227mread_param.c\u001b[0;36m:\u001b[38;5;192mhash_unset\u001b[0;36m:\u001b[0;32m71\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08797540 for ModuleMocks in \u001b[38;5;227mread_param.c\u001b[0;36m:\u001b[38;5;192mhash_unset\u001b[0;36m:\u001b[0;32m71\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08797590 for InputRngStateMocks in \u001b[38;5;227mread_param.c\u001b[0;36m:\u001b[38;5;192mhash_unset\u001b[0;36m:\u001b[0;32m71\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb087975e0 for OutputRngStateMocks in \u001b[38;5;227mread_param.c\u001b[0;36m:\u001b[38;5;192mhash_unset\u001b[0;36m:\u001b[0;32m71\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08797630 for WriteMocksRngState in \u001b[38;5;227mread_param.c\u001b[0;36m:\u001b[38;5;192mhash_unset\u001b[0;36m:\u001b[0;32m71\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08797680 for OutputMocksRngState in \u001b[38;5;227mread_param.c\u001b[0;36m:\u001b[38;5;192mhash_unset\u001b[0;36m:\u001b[0;32m71\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb087976d0 for NoiseModel in \u001b[38;5;227mread_param.c\u001b[0;36m:\u001b[38;5;192mhash_unset\u001b[0;36m:\u001b[0;32m71\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08797720 for NumberOfNoiseRealizations in \u001b[38;5;227mread_param.c\u001b[0;36m:\u001b[38;5;192mhash_unset\u001b[0;36m:\u001b[0;32m71\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0883abb0 for InputDensityMocks in \u001b[38;5;227mread_param.c\u001b[0;36m:\u001b[38;5;192mhash_unset\u001b[0;36m:\u001b[0;32m71\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0883abe0 for InputSurveyGeometry in \u001b[38;5;227mread_param.c\u001b[0;36m:\u001b[38;5;192mhash_unset\u001b[0;36m:\u001b[0;32m71\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0883ac30 for InputSummaryStatskGrid in \u001b[38;5;227mread_param.c\u001b[0;36m:\u001b[38;5;192mhash_unset\u001b[0;36m:\u001b[0;32m71\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0883ac80 for WriteMocks in \u001b[38;5;227mread_param.c\u001b[0;36m:\u001b[38;5;192mhash_unset\u001b[0;36m:\u001b[0;32m71\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0883acd0 for OutputMockBase in \u001b[38;5;227mread_param.c\u001b[0;36m:\u001b[38;5;192mhash_unset\u001b[0;36m:\u001b[0;32m71\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0883ad20 for OutputMockExt in \u001b[38;5;227mread_param.c\u001b[0;36m:\u001b[38;5;192mhash_unset\u001b[0;36m:\u001b[0;32m71\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0883ad70 for WriteSummaryStats in \u001b[38;5;227mread_param.c\u001b[0;36m:\u001b[38;5;192mhash_unset\u001b[0;36m:\u001b[0;32m71\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0883adc0 for OutputSummaryStats in \u001b[38;5;227mread_param.c\u001b[0;36m:\u001b[38;5;192mhash_unset\u001b[0;36m:\u001b[0;32m71\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0883ae10 for h in \u001b[38;5;227mread_param.c\u001b[0;36m:\u001b[38;5;192mhash_unset\u001b[0;36m:\u001b[0;32m71\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0883ae60 for Omega_r in \u001b[38;5;227mread_param.c\u001b[0;36m:\u001b[38;5;192mhash_unset\u001b[0;36m:\u001b[0;32m71\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0883aeb0 for Omega_q in \u001b[38;5;227mread_param.c\u001b[0;36m:\u001b[38;5;192mhash_unset\u001b[0;36m:\u001b[0;32m71\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0883af00 for Omega_b in \u001b[38;5;227mread_param.c\u001b[0;36m:\u001b[38;5;192mhash_unset\u001b[0;36m:\u001b[0;32m71\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0883af50 for Omega_m in \u001b[38;5;227mread_param.c\u001b[0;36m:\u001b[38;5;192mhash_unset\u001b[0;36m:\u001b[0;32m71\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0883afa0 for Omega_k in \u001b[38;5;227mread_param.c\u001b[0;36m:\u001b[38;5;192mhash_unset\u001b[0;36m:\u001b[0;32m71\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0883aff0 for n_s in \u001b[38;5;227mread_param.c\u001b[0;36m:\u001b[38;5;192mhash_unset\u001b[0;36m:\u001b[0;32m71\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0883b040 for sigma8 in \u001b[38;5;227mread_param.c\u001b[0;36m:\u001b[38;5;192mhash_unset\u001b[0;36m:\u001b[0;32m71\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0883b090 for w0_fld in \u001b[38;5;227mread_param.c\u001b[0;36m:\u001b[38;5;192mhash_unset\u001b[0;36m:\u001b[0;32m71\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0883b0e0 for wa_fld in \u001b[38;5;227mread_param.c\u001b[0;36m:\u001b[38;5;192mhash_unset\u001b[0;36m:\u001b[0;32m71\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb086a11f0 for hashtab in \u001b[38;5;227mread_param.c\u001b[0;36m:\u001b[38;5;192mread_parameterfile\u001b[0;36m:\u001b[0;32m907\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]|Reading parameter file in '/home/hoellinger/wip3m/results/forcediag1/nsteps20_example_spm.sbmy' done.\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]|\u001b[38;5;246mCorrectly allocated memory (786432 bytes) at 0x55cb086a11f0 for PsiLPT in \u001b[38;5;227mmain.c\u001b[0;36m:\u001b[38;5;192mmain_sbmy\u001b[0;36m:\u001b[0;32m110\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb087f5810 for FCs_field.data in \u001b[38;5;227mmain.c\u001b[0;36m:\u001b[38;5;192mmain_sbmy\u001b[0;36m:\u001b[0;32m115\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;147mMODULE \u001b[00m]|\u001b[38;5;147mModuleLPT: Initializing snapshot...\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly allocated memory (393216 bytes) at 0x55cb0883bf60 for P.positions in \u001b[38;5;227msnapshot.c\u001b[0;36m:\u001b[38;5;192mreturn_grid_snapshot_DM\u001b[0;36m:\u001b[0;32m169\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly allocated memory (393216 bytes) at 0x55cb0889bf70 for P.velocities in \u001b[38;5;227msnapshot.c\u001b[0;36m:\u001b[38;5;192mreturn_grid_snapshot_DM\u001b[0;36m:\u001b[0;32m169\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb087d1430 for P.ids in \u001b[38;5;227msnapshot.c\u001b[0;36m:\u001b[38;5;192mreturn_grid_snapshot_DM\u001b[0;36m:\u001b[0;32m169\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;147mMODULE \u001b[00m]|\u001b[38;5;147mModuleLPT: Initializing snapshot done.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;159mTIMER \u001b[00m]|LPT snapshot initialization: 0.001 CPU - 0.000 wallclock seconds used.\n",
"[02:24:16\u001b[00m|\u001b[38;5;147mMODULE \u001b[00m]|\u001b[38;5;147mModuleLPT: Returning initial conditions...\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]==|Reading field in '/data70/hoellinger/WIP3M/forcediag1/initial_density.h5'...\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb08772540 for ICs_field.data in \u001b[38;5;227mlpt.c\u001b[0;36m:\u001b[38;5;192mget_initial_conditions\u001b[0;36m:\u001b[0;32m121\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]==|Reading field in '/data70/hoellinger/WIP3M/forcediag1/initial_density.h5' done.\n",
"[02:24:16\u001b[00m|\u001b[38;5;147mMODULE \u001b[00m]|\u001b[38;5;147mModuleLPT: Returning initial conditions done.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;159mTIMER \u001b[00m]|LPT initial conditions: 0.194 CPU - 0.010 wallclock seconds used.\n",
"[02:24:16\u001b[00m|\u001b[38;5;147mMODULE \u001b[00m]|\u001b[38;5;147mModuleLPT: Evolving with Lagrangian perturbation theory (using 32 cores)...\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb08575200 for phi1 in \u001b[38;5;227mlpt.c\u001b[0;36m:\u001b[38;5;192mevolve_lpt\u001b[0;36m:\u001b[0;32m604\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb08595210 for phi2 in \u001b[38;5;227mlpt.c\u001b[0;36m:\u001b[38;5;192mevolve_lpt\u001b[0;36m:\u001b[0;32m606\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]==|Computing Lagrangian potentials, periodic boundary conditions (using 32 cores)...\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]====|\u001b[38;5;246mCorrectly allocated memory (139264 bytes) at 0x55cb085b5220 for phi1_fs in \u001b[38;5;227mlpt.c\u001b[0;36m:\u001b[38;5;192mget_potentials_periodic\u001b[0;36m:\u001b[0;32m199\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:16\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]====|\u001b[38;5;246mCorrectly allocated memory (139264 bytes) at 0x55cb085d7230 for AUX in \u001b[38;5;227mlpt.c\u001b[0;36m:\u001b[38;5;192mget_potentials_periodic\u001b[0;36m:\u001b[0;32m200\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]====|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb085d7230 for AUX in \u001b[38;5;227mlpt.c\u001b[0;36m:\u001b[38;5;192mget_potentials_periodic\u001b[0;36m:\u001b[0;32m223\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]======|\u001b[38;5;246mphi1=[47.2319 42.3787 36.3836 37.672 38.2979 38.5121 41.9472 43.9162 40.5739 30.8487 23.2239 12.8938 0.107064 -8.6725 -21.8996 -26.0947 -26.4535 -26.2548 -26.8737 -25.5193 -23.6712 -20.9114 -17.9755 -7.39222 1.26319 11.1909 16.2126 23.079 31.2159 38.3702 46.8912 48.7634 56.4322 48.2668 40.5232 38.0133 39.9278 39.5403 39.5883 41.2595 37.2127 36.0914 27.0051 15.3204 4.09597 -3.54301 -13.9048 -19.8965 -22.8311 -26.7959 -28.2151 -28.9148 -28.3291 -25.9206 -21.1365 -9.86366 1.27518 13.8106 22.3625 29.5885 41.8275 49.639 55.1122 56.8693 57.7936 51.0163 43.2442 41.8046 43.1511 44.8754 44.6807 41.3538 36.6969 38.8021 32.4499 22.7567 11.4102 2.46955 -8.27795 -14.5797 -17.6189 -20.2041 -23.9175 -24.3429 -24.6511 -23.5456 -18.7415 -9.72544 3.24699 13.1879 24.1942 34.1379 47.8955 56.5114 59.2315 59.8578 53.0035 48.6978 46.9915 49.2617 ...]\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]====|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb085d7230 for PHI00 in \u001b[38;5;227mlpt.c\u001b[0;36m:\u001b[38;5;192mget_potentials_periodic\u001b[0;36m:\u001b[0;32m233\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]====|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb085f7240 for PHI11 in \u001b[38;5;227mlpt.c\u001b[0;36m:\u001b[38;5;192mget_potentials_periodic\u001b[0;36m:\u001b[0;32m234\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]====|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb08617250 for PHI22 in \u001b[38;5;227mlpt.c\u001b[0;36m:\u001b[38;5;192mget_potentials_periodic\u001b[0;36m:\u001b[0;32m235\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]====|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb08637260 for PHI01 in \u001b[38;5;227mlpt.c\u001b[0;36m:\u001b[38;5;192mget_potentials_periodic\u001b[0;36m:\u001b[0;32m236\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]====|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0895b150 for PHI02 in \u001b[38;5;227mlpt.c\u001b[0;36m:\u001b[38;5;192mget_potentials_periodic\u001b[0;36m:\u001b[0;32m237\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]====|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0897b160 for PHI12 in \u001b[38;5;227mlpt.c\u001b[0;36m:\u001b[38;5;192mget_potentials_periodic\u001b[0;36m:\u001b[0;32m238\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]====|\u001b[38;5;246mCorrectly allocated memory (139264 bytes) at 0x55cb0899b170 for AUX in \u001b[38;5;227mpoisson_solvers.c\u001b[0;36m:\u001b[38;5;192mget_2ndderivative_potential_rs_DFT\u001b[0;36m:\u001b[0;32m169\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]====|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0899b170 for AUX in \u001b[38;5;227mpoisson_solvers.c\u001b[0;36m:\u001b[38;5;192mget_2ndderivative_potential_rs_DFT\u001b[0;36m:\u001b[0;32m187\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]====|\u001b[38;5;246mCorrectly allocated memory (139264 bytes) at 0x55cb0899b170 for AUX in \u001b[38;5;227mpoisson_solvers.c\u001b[0;36m:\u001b[38;5;192mget_2ndderivative_potential_rs_DFT\u001b[0;36m:\u001b[0;32m169\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]====|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0899b170 for AUX in \u001b[38;5;227mpoisson_solvers.c\u001b[0;36m:\u001b[38;5;192mget_2ndderivative_potential_rs_DFT\u001b[0;36m:\u001b[0;32m187\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]====|\u001b[38;5;246mCorrectly allocated memory (139264 bytes) at 0x55cb0899b170 for AUX in \u001b[38;5;227mpoisson_solvers.c\u001b[0;36m:\u001b[38;5;192mget_2ndderivative_potential_rs_DFT\u001b[0;36m:\u001b[0;32m169\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]====|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0899b170 for AUX in \u001b[38;5;227mpoisson_solvers.c\u001b[0;36m:\u001b[38;5;192mget_2ndderivative_potential_rs_DFT\u001b[0;36m:\u001b[0;32m187\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]====|\u001b[38;5;246mCorrectly allocated memory (139264 bytes) at 0x55cb0899b170 for AUX in \u001b[38;5;227mpoisson_solvers.c\u001b[0;36m:\u001b[38;5;192mget_2ndderivative_potential_rs_DFT\u001b[0;36m:\u001b[0;32m169\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]====|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0899b170 for AUX in \u001b[38;5;227mpoisson_solvers.c\u001b[0;36m:\u001b[38;5;192mget_2ndderivative_potential_rs_DFT\u001b[0;36m:\u001b[0;32m187\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]====|\u001b[38;5;246mCorrectly allocated memory (139264 bytes) at 0x55cb0899b170 for AUX in \u001b[38;5;227mpoisson_solvers.c\u001b[0;36m:\u001b[38;5;192mget_2ndderivative_potential_rs_DFT\u001b[0;36m:\u001b[0;32m169\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]====|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0899b170 for AUX in \u001b[38;5;227mpoisson_solvers.c\u001b[0;36m:\u001b[38;5;192mget_2ndderivative_potential_rs_DFT\u001b[0;36m:\u001b[0;32m187\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]====|\u001b[38;5;246mCorrectly allocated memory (139264 bytes) at 0x55cb0899b170 for AUX in \u001b[38;5;227mpoisson_solvers.c\u001b[0;36m:\u001b[38;5;192mget_2ndderivative_potential_rs_DFT\u001b[0;36m:\u001b[0;32m169\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]====|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0899b170 for AUX in \u001b[38;5;227mpoisson_solvers.c\u001b[0;36m:\u001b[38;5;192mget_2ndderivative_potential_rs_DFT\u001b[0;36m:\u001b[0;32m187\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]====|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb085b5220 for phi1_fs in \u001b[38;5;227mlpt.c\u001b[0;36m:\u001b[38;5;192mget_potentials_periodic\u001b[0;36m:\u001b[0;32m288\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]======|\u001b[38;5;246mPHI00=[-0.784269 -0.29015 0.567948 0.425166 0.667769 0.734648 0.0534074 -0.169362 0.161651 0.642128 0.885179 0.53844 0.483512 0.248178 0.823048 0.681005 0.868152 0.913395 0.823481 0.616244 0.48264 0.337299 0.498298 0.0707091 0.0463234 -0.110028 0.0712752 -0.140816 -0.721263 -1.05918 -1.39015 -1.14429 -0.751543 -0.0901751 0.553619 0.700669 0.645672 0.65837 0.199223 0.217587 0.762528 0.458159 0.998539 1.04355 0.874396 0.151068 0.149625 0.131951 0.508045 1.25806 1.13241 1.07781 0.833887 0.699478 0.426476 -0.0381416 0.0288815 -0.302053 -0.288625 -0.137748 -0.71982 -1.17861 -1.03943 -0.808395 -0.423617 0.0309392 0.594642 0.664679 0.223485 0.00752389 0.00234774 0.336849 0.899745 0.667219 1.16037 1.07108 0.887593 -0.0355211 -0.12671 0.0415321 0.352329 0.910195 1.17971 0.814864 0.544931 0.431617 0.365001 0.286053 0.131754 0.333694 0.485301 0.266144 -0.31801 -0.831861 -0.704757 -0.458555 -0.0968574 0.228758 0.37909 0.121016 ...]\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]======|\u001b[38;5;246mPHI11=[-1.33963 -0.991921 -0.551232 -0.54796 -0.287175 0.0569453 0.0605424 -0.206748 -0.270574 0.319115 0.127777 0.305461 0.446325 0.365932 0.721861 0.575778 0.632993 0.411273 0.403021 0.624863 0.710258 0.714543 0.407548 -0.0228347 0.123268 -0.396033 -0.295966 -0.379989 -0.409061 -0.276913 -0.99711 -1.22535 -1.70161 -1.01369 -0.359579 0.242752 0.310821 0.565025 0.813905 0.414875 0.285013 -0.211964 0.073071 0.242155 0.311815 -0.00973761 -0.0857236 0.0919562 0.340532 0.802365 0.9279 1.2744 1.3037 1.43673 0.963967 0.684595 0.582862 0.0870358 -0.179192 -0.285564 -0.841147 -1.04394 -1.21913 -1.36149 -1.24058 -1 -0.0469093 0.291121 0.0307971 -0.2598 -0.0738761 0.0734288 0.265944 -0.901634 -0.750186 -0.496936 -0.0644205 -0.167807 -0.610556 -0.606331 -0.160626 -0.0976117 0.11838 0.447318 0.703836 0.975916 0.849195 1.27659 1.04824 0.989731 0.383562 -0.0320472 -0.815267 -1.20498 -1.04799 -1.14387 -0.506839 -0.620764 -0.593896 -0.747759 ...]\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]======|\u001b[38;5;246mPHI22=[-0.699312 0.104874 0.797659 0.34668 0.108443 0.285242 -0.313914 -1.15447 -0.998549 -0.305467 -0.360422 -0.22571 0.0693843 0.259003 1.0908 1.07889 0.258357 0.0559774 0.22642 0.242016 0.155819 0.556963 0.846444 0.316491 -0.268082 -0.418437 0.00336723 0.212701 0.0419977 -0.306134 -0.958409 -1.04862 -1.07681 -0.103188 0.957096 0.736285 0.0159944 0.0120061 -0.127255 -0.430454 -0.489499 -0.975176 -0.793849 0.119218 0.306773 0.156872 0.567156 0.590878 0.221392 0.298786 0.329372 0.319568 0.456668 0.816415 0.95119 0.476089 -0.0827715 -0.493529 -0.101397 0.267043 -0.386268 -0.801266 -0.747797 -0.989548 -0.819462 -0.0231379 0.903517 0.76765 0.101417 -0.41202 -0.594585 0.0606212 0.233547 -0.843359 -1.04954 -0.265111 0.0844717 0.202367 0.646701 0.714061 0.190144 0.0928406 0.347814 0.308515 0.415202 0.813922 1.00493 0.568324 -0.0650744 -0.122704 0.172122 0.0889674 -0.772821 -1.1892 -0.798378 -0.761739 -0.0353257 0.486177 0.50021 -0.0239269 ...]\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]======|\u001b[38;5;246mPHI01=[-0.47899 -0.275337 0.344071 0.540172 0.305868 -0.0884352 -0.348127 -0.760403 -0.970949 -0.881878 -0.698715 -0.52696 -0.292202 -0.334623 0.160768 0.123227 -0.0317472 -0.499707 -0.653537 -0.365983 -0.508112 -0.808545 -0.664151 -0.748805 -0.871238 -0.654296 -0.995492 -1.29829 -0.923516 -0.470407 -0.456115 -0.221848 -0.38107 -0.425155 -0.280948 0.156917 0.262797 0.154001 -0.174799 -0.51216 -0.628448 -0.282768 -0.423579 -0.649479 -0.409469 -0.329331 -0.476005 0.210689 -0.176506 -0.888466 -1.13844 -0.701318 -0.416382 -0.365081 -0.456865 -0.566498 -0.989642 -0.948128 -1.03643 -1.15297 -0.861137 -0.15139 -0.0604313 -0.358716 -0.157809 -0.00265639 0.16237 0.603189 0.490705 -0.0660029 -0.144696 -0.319273 -0.588667 -0.354157 -0.0516477 -0.294916 -0.57316 -0.41364 -0.769557 -0.248029 -0.187638 -0.279643 -0.71604 -0.762351 -0.61394 -0.438123 -0.470653 -0.72974 -0.562355 -0.961297 -0.804459 -0.401036 -0.541832 -0.247489 -0.440441 -0.286678 0.36482 0.711236 0.804505 0.657639 ...]\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]======|\u001b[38;5;246mPHI02=[-0.714171 -0.954039 -0.789022 -0.310415 0.468433 0.469865 -0.152044 -0.476037 -0.152973 0.501889 0.384581 -0.429034 -0.697627 -0.190423 -0.1603 -0.352953 0.187856 0.360507 -0.149547 -0.488566 -0.146924 0.338911 0.782362 0.903405 0.246365 -0.0418358 0.174571 0.19951 0.176551 0.437137 0.54189 0.0320788 -0.666948 -0.624211 -0.574723 -0.268733 0.448439 0.438498 -0.49923 -0.744885 -0.141333 0.251378 0.332573 -0.189451 -0.57827 0.00363836 0.211721 -0.174289 -0.447886 -0.123838 0.259565 -0.108334 -0.302083 0.177267 0.710738 0.638082 0.356625 0.0286319 -0.280322 0.150245 0.653689 0.72512 0.517442 -0.179118 -0.78061 -0.853916 -0.206949 0.233329 0.465516 0.0322694 -0.818205 -0.929686 0.0764187 0.706758 0.0178704 -0.414925 -0.37748 -0.256959 0.379719 -0.0534546 -0.911298 -0.601422 0.037601 0.233487 0.189314 0.298429 0.580945 0.370627 -0.135265 -0.0886211 -0.0302691 0.374801 1.17813 1.23784 0.334563 -0.28856 -0.382926 -0.304032 0.0311225 0.0596017 ...]\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]======|\u001b[38;5;246mPHI12=[-0.261074 -0.723468 -0.580355 -0.508727 -0.406396 -0.448365 -0.333382 -0.0203574 0.656873 0.691173 0.023265 0.0511115 0.331576 0.0762668 -0.283125 -0.318637 -0.577458 -0.55819 -0.380347 -0.372867 -0.181456 0.273605 0.452558 0.323736 0.655595 0.856672 0.494262 0.713381 0.650832 -0.0948898 -0.261369 0.0595556 -0.153547 -0.231318 -0.281559 -0.125459 0.139411 -0.132486 -0.557851 -0.413157 0.657238 0.818939 0.119346 0.129821 0.0799448 0.144908 0.0233095 -0.299188 -0.341515 -0.367401 -0.304651 -0.246008 -0.238153 0.0133753 0.0188055 0.171857 0.270638 0.374865 0.566372 0.54362 0.442638 -0.271199 -0.440424 -0.111168 0.0867245 0.61856 0.676089 0.161674 -0.0841224 0.0547199 -0.483532 -0.54925 0.0300337 0.479231 0.477384 0.289856 0.0796836 -0.321272 -0.181431 0.107619 0.132951 0.0291782 0.0916901 0.0029343 -0.0191281 -0.066129 -0.299576 -0.0573696 0.058036 0.0946184 0.121661 0.0514253 -0.107541 -0.472873 -0.578923 -0.422921 -0.00967912 0.962352 1.00956 -0.0477528 ...]\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]======|\u001b[38;5;246mphi2=[1.72827 -1.35606 -1.37749 -0.92249 -0.628635 -0.161994 -0.28799 -0.336017 -1.3326 -1.59604 -0.888633 -0.490375 -0.40169 0.0958226 2.14761 1.50674 0.56761 -0.241441 0.0154466 0.173767 0.215984 -0.0166132 -0.288167 -1.46812 -1.28931 -0.908411 -1.28762 -2.29155 -1.06006 0.280947 3.10411 3.8332 3.30679 -0.418589 -0.501869 0.752136 -0.0736083 0.153135 -0.55776 -1.16983 -1.14232 -1.15101 -1.082 -0.0685876 0.128096 -0.108771 -0.248535 -0.0198442 0.0124848 0.685359 0.273156 1.56115 1.74196 2.58411 1.01946 -0.475946 -1.21362 -0.960462 -1.37438 -1.72114 -0.156369 2.38899 2.49078 3.07471 1.2475 -1.12031 -0.0592973 0.482805 -0.431902 0.0935961 -0.881842 -1.21832 0.158254 -1.25849 -1.53188 -1.02762 -0.464997 -0.375528 -1.16875 -0.504441 -0.903491 -0.454165 0.0686159 0.118202 0.488907 1.28146 0.881376 0.580084 -0.276586 -0.773021 -0.327178 -0.291652 -0.558051 1.60747 1.49686 1.40085 -0.209403 -1.857 -2 -0.513817 ...]\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]====|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb085d7230 for PHI00 in \u001b[38;5;227mlpt.c\u001b[0;36m:\u001b[38;5;192mget_potentials_periodic\u001b[0;36m:\u001b[0;32m302\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]====|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb085f7240 for PHI11 in \u001b[38;5;227mlpt.c\u001b[0;36m:\u001b[38;5;192mget_potentials_periodic\u001b[0;36m:\u001b[0;32m303\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]====|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08617250 for PHI22 in \u001b[38;5;227mlpt.c\u001b[0;36m:\u001b[38;5;192mget_potentials_periodic\u001b[0;36m:\u001b[0;32m304\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]====|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08637260 for PHI01 in \u001b[38;5;227mlpt.c\u001b[0;36m:\u001b[38;5;192mget_potentials_periodic\u001b[0;36m:\u001b[0;32m305\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]====|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0895b150 for PHI02 in \u001b[38;5;227mlpt.c\u001b[0;36m:\u001b[38;5;192mget_potentials_periodic\u001b[0;36m:\u001b[0;32m306\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]====|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0897b160 for PHI12 in \u001b[38;5;227mlpt.c\u001b[0;36m:\u001b[38;5;192mget_potentials_periodic\u001b[0;36m:\u001b[0;32m307\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]====|\u001b[38;5;246mCorrectly allocated memory (139264 bytes) at 0x55cb085b5220 for AUX in \u001b[38;5;227mpoisson_solvers.c\u001b[0;36m:\u001b[38;5;192msolve_poisson_DFT\u001b[0;36m:\u001b[0;32m106\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]====|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb085b5220 for AUX in \u001b[38;5;227mpoisson_solvers.c\u001b[0;36m:\u001b[38;5;192msolve_poisson_DFT\u001b[0;36m:\u001b[0;32m116\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]======|\u001b[38;5;246mphi2=[-7.19243 0.711433 2.50844 1.69895 1.92396 1.6682 0.784271 0.281268 1.94507 3.55332 3.40833 3.03304 2.65963 1.32323 -1.00243 -0.0334973 2.66263 4.45627 4.45348 4.21385 3.71045 3.81197 5.12959 7.70255 8.45673 8.42981 7.75244 5.59556 0.280392 -5.65557 -11.5773 -12.959 -9.89881 -1.35776 1.11734 0.845204 2.14053 2.64331 3.47923 4.27156 4.58508 5.40694 5.18881 4.39324 4.15083 3.77005 3.01167 2.80652 4.09826 3.8848 2.85791 0.578 -1.14119 -2.31897 -0.0614372 3.72552 6.73959 7.5081 6.68027 3.58213 -2.49277 -9.37053 -13.4469 -14.48 -7.47699 -0.558793 1.33027 1.88828 3.45775 3.73167 4.93722 6.00481 4.99978 6.18209 5.99903 6.3281 6.40934 6.23168 6.49441 5.85855 6.35357 5.33819 3.13015 0.986308 -1.45782 -3.38515 -2.17893 0.711807 3.98067 5.27667 3.76267 0.340354 -4.39222 -9.8257 -11.8912 -11.672 -3.83313 1.35645 3.69302 3.7771 ...]\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]==|Computing Lagrangian potentials, periodic boundary conditions (using 32 cores) done.\n",
"[02:24:17\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]==|Computing Lagrangian displacement field (using 32 cores)...\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]====|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb085b5220 for Psi1_pad in \u001b[38;5;227mlpt.c\u001b[0;36m:\u001b[38;5;192mcompute_LPT_displacements\u001b[0;36m:\u001b[0;32m512\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]====|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb085d5230 for Psi2_pad in \u001b[38;5;227mlpt.c\u001b[0;36m:\u001b[38;5;192mcompute_LPT_displacements\u001b[0;36m:\u001b[0;32m514\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]======|\u001b[38;5;246mPsi1_0=[7.17583 4.96459 3.35968 1.80851 2.11802 3.68224 3.99748 3.07406 2.09333 2.46217 4.10089 4.00049 2.38475 1.20998 1.62306 0.568782 0.211242 1.32021 1.65327 0.722018 -0.300995 0.134326 1.05465 3.26377 4.66827 4.24923 4.50093 4.94752 5.29897 5.65372 7.04751 7.82128 5.63338 4.26219 3.13654 1.9633 2.06161 3.75706 3.8156 1.76014 0.836061 1.19481 1.84157 2.5251 1.08377 0.212019 1.09832 1.0589 0.40116 -0.732638 -0.0941916 0.30562 -0.52753 -0.902712 0.181539 1.94024 2.73387 3.36674 2.8484 2.24545 3.44938 4.86021 6.34986 6.92998 5.65155 3.26397 2.23588 2.43618 3.1692 4.29824 3.29828 1.02542 -0.420464 1.3311 2.40657 1.40258 0.746872 -0.10734 -0.280964 1.41154 -0.494783 -2.23366 -2.90047 -2.08325 -1.96652 -1.326 -0.772808 0.997782 0.709702 0.45672 0.355217 0.335645 1.85442 5.04816 6.80579 6.38641 5.00215 4.25156 3.78602 4.37605 ...]\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]======|\u001b[38;5;246mPsi2_0=[-3.13183 -2.98806 -2.22211 -1.75676 -1.27025 -1.20952 -1.27562 -1.72865 -1.80505 -1.33031 -1.03401 -0.489251 -0.477254 -0.56089 -0.126299 -0.298697 -0.0856172 0.449229 0.581163 -0.358395 -1.26285 -1.6738 -1.28106 -0.672622 -0.928629 -1.06536 -0.877262 -0.466991 0.119142 -0.472103 -1.80751 -3.16017 -3.33508 -2.88215 -2.32954 -2.05188 -1.42823 -0.842016 -0.596849 -1.44055 -1.5337 -0.880083 -0.853235 -0.535422 -0.289002 -0.0444291 0.660143 0.683142 0.133926 -0.18701 -0.142778 -0.192245 -1.01212 -1.66042 -1.15919 -0.413013 -0.631024 -0.998227 -0.831713 -0.437676 -0.168854 -1.31104 -2.63695 -3.88446 -3.01074 -2.37205 -2.35002 -1.9508 -1.13861 -0.847349 -0.801503 -0.976978 -0.896723 -0.734903 -1.50721 -0.715184 0.253651 0.397625 0.439514 0.820333 0.0939471 -0.449729 -0.62302 -0.706148 -1.03158 -1.1885 -0.843086 -0.106953 -0.388954 -0.774329 -0.538962 -0.18687 0.0974321 -1.84371 -3.22365 -3.69871 -2.33727 -1.93641 -2.01598 -1.88261 ...]\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]====|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb085b5220 for Psi1_pad in \u001b[38;5;227mlpt.c\u001b[0;36m:\u001b[38;5;192mcompute_LPT_displacements\u001b[0;36m:\u001b[0;32m565\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]====|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb085d5230 for Psi2_pad in \u001b[38;5;227mlpt.c\u001b[0;36m:\u001b[38;5;192mcompute_LPT_displacements\u001b[0;36m:\u001b[0;32m567\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]====|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb085b5220 for Psi1_pad in \u001b[38;5;227mlpt.c\u001b[0;36m:\u001b[38;5;192mcompute_LPT_displacements\u001b[0;36m:\u001b[0;32m512\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]====|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb085d5230 for Psi2_pad in \u001b[38;5;227mlpt.c\u001b[0;36m:\u001b[38;5;192mcompute_LPT_displacements\u001b[0;36m:\u001b[0;32m514\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]======|\u001b[38;5;246mPsi1_1=[5.94927 4.16253 3.0554 1.84111 1.02049 0.215528 -0.772967 -1.118 -0.854399 1.50949 1.91029 1.60255 2.11474 2.92886 2.41981 1.79636 1.14526 -0.513472 -1.0875 -2.03486 -2.57897 -2.76068 -1.48455 -0.950449 -0.189603 1.67193 3.23708 3.64898 6.09061 6.25231 5.71105 5.20683 2.64042 2.1594 1.71515 1.03317 1.21331 1.59081 0.68337 -0.640597 -0.969258 1.98835 2.3065 2.46573 2.82578 2.78551 3.40541 2.87875 2.20866 1.51269 0.739052 0.294085 -0.244978 -0.658526 -0.191478 -0.583305 0.49595 0.49925 1.99541 2.76474 4.16989 4.53529 3.08509 2.77359 -0.857157 0.107762 1.61708 2.81212 2.26378 2.47563 2.48265 0.541504 0.285653 0.661639 2.20258 2.57118 3.362 2.88991 2.07691 2.16419 2.50739 2.69599 2.6241 3.06275 2.63584 2.98624 2.37132 1.78793 2.14184 2.02007 2.52032 2.50672 2.72602 2.07656 0.834525 -0.239136 -2.3219 -1.8406 1.52751 2.19765 ...]\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]======|\u001b[38;5;246mPsi2_1=[-1.62359 -1.00602 -0.418313 0.144603 0.236817 0.562081 1.99035 3.24628 2.51063 1.59997 1.20528 0.727313 0.65581 0.986954 0.984299 0.591405 0.259888 -0.463477 -1.01116 -1.77406 -2.17928 -2.6014 -2.25895 -1.4749 -0.36377 -0.102846 0.0885363 -0.093285 -0.81882 -1.82548 -1.93929 -1.72384 -0.0711403 -0.317556 -0.294542 0.0473329 0.383448 0.515867 1.03824 1.43088 0.763678 0.657193 0.647673 0.823765 0.937426 1.22711 1.87421 1.47301 0.922734 0.22048 -0.330833 -0.806887 -1.29207 -1.79928 -1.82713 -1.74768 -1.11902 -0.788286 -0.997443 -1.3138 -1.16815 -1.04253 -0.0784729 0.321726 1.51642 0.678553 0.643921 0.732973 0.598034 0.423424 0.246891 0.722541 0.513195 0.555574 0.428877 0.889885 0.840357 0.782335 1.31904 1.36973 0.833982 0.595701 0.268146 0.384413 0.241237 0.177466 -0.254867 -0.678472 -0.987686 -0.949183 -0.999471 -0.835961 -0.512131 0.222434 1.2247 1.79331 1.29619 0.269115 0.358978 0.370496 ...]\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]====|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb085b5220 for Psi1_pad in \u001b[38;5;227mlpt.c\u001b[0;36m:\u001b[38;5;192mcompute_LPT_displacements\u001b[0;36m:\u001b[0;32m565\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]====|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb085d5230 for Psi2_pad in \u001b[38;5;227mlpt.c\u001b[0;36m:\u001b[38;5;192mcompute_LPT_displacements\u001b[0;36m:\u001b[0;32m567\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]====|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb085b5220 for Psi1_pad in \u001b[38;5;227mlpt.c\u001b[0;36m:\u001b[38;5;192mcompute_LPT_displacements\u001b[0;36m:\u001b[0;32m512\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]====|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb085d5230 for Psi2_pad in \u001b[38;5;227mlpt.c\u001b[0;36m:\u001b[38;5;192mcompute_LPT_displacements\u001b[0;36m:\u001b[0;32m514\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]======|\u001b[38;5;246mPsi1_2=[-1.59618 -2.71207 -1.17668 0.478564 0.21004 0.912336 1.35101 -0.343319 -3.26686 -4.33751 -4.48873 -5.7792 -5.39157 -5.50166 -4.35556 -1.13848 -0.0400214 -0.105049 0.18389 0.80063 1.15195 1.42391 3.37981 4.80968 4.64577 3.73736 2.97202 3.75083 3.82282 3.91882 2.59829 0.0851774 -2.15063 -3.97724 -2.56337 -0.148855 0.381763 -0.0848751 0.429788 -0.593897 -1.29203 -2.55189 -5.19273 -5.72729 -4.71586 -4.50019 -4.08837 -2.23157 -1.72486 -1.346 -0.529714 -0.028513 0.748561 1.79816 4.01422 5.60292 5.91858 5.27183 3.94446 4.86625 5.01263 3.32118 1.80757 0.329986 -2.21037 -3.63734 -2.30292 -0.0232725 0.76768 0.382393 -0.880397 -1.99595 -0.637912 -1.06176 -4.01135 -5.25992 -5.07179 -4.92203 -4.26232 -2.33523 -1.40608 -1.57465 -1.03472 -0.183401 0.199344 1.47741 3.45503 5.49711 5.72833 5.23681 5.23751 5.9253 5.59338 2.83402 0.836591 -0.359492 -1.80373 -1.503 0.140982 0.497841 ...]\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]======|\u001b[38;5;246mPsi2_2=[3.4176 2.42522 0.24688 -0.146121 -0.00768793 -0.284921 -0.346733 0.290199 0.818014 0.365817 -0.130071 -0.187175 -0.427452 -0.915515 -0.339182 0.916265 1.12244 0.447713 -0.0606048 -0.185758 -0.100472 0.354784 0.972645 0.831785 0.181816 -0.176073 -0.708562 -1.86801 -2.81278 -2.96442 -1.82585 1.09621 3.28055 2.75404 0.550741 0.255798 0.449528 0.334677 0.407062 0.27646 0.283844 0.150933 -0.253426 -0.259496 -0.155796 -0.284788 -0.240884 0.271645 0.269571 -0.310085 -0.826701 -0.999777 -0.724242 0.269939 1.51112 1.70026 0.945644 -0.0148308 -0.981493 -2.29326 -3.23816 -2.73853 -1.27736 0.887022 2.77831 2.20182 0.611769 0.531869 0.460847 0.369868 0.568285 0.0156394 0.0443213 0.249813 0.0365016 0.102577 -0.0241039 0.0212677 -0.0932828 -0.0352095 -0.13009 -0.805855 -1.08797 -1.14699 -1.09286 -0.180277 1.02424 1.5399 1.14121 -0.0544996 -1.23408 -2.03872 -2.54151 -1.87474 -0.461587 1.10355 2.1658 1.88154 0.605162 0.209911 ...]\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]====|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb085b5220 for Psi1_pad in \u001b[38;5;227mlpt.c\u001b[0;36m:\u001b[38;5;192mcompute_LPT_displacements\u001b[0;36m:\u001b[0;32m565\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]====|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb085d5230 for Psi2_pad in \u001b[38;5;227mlpt.c\u001b[0;36m:\u001b[38;5;192mcompute_LPT_displacements\u001b[0;36m:\u001b[0;32m567\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]==|Computing Lagrangian displacement field (using 32 cores) done.\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08575200 for phi1 in \u001b[38;5;227mlpt.c\u001b[0;36m:\u001b[38;5;192mevolve_lpt\u001b[0;36m:\u001b[0;32m627\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08595210 for phi2 in \u001b[38;5;227mlpt.c\u001b[0;36m:\u001b[38;5;192mevolve_lpt\u001b[0;36m:\u001b[0;32m629\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]====|\u001b[38;5;246mD1=0.063646\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]====|\u001b[38;5;246mD2=-0.001750\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]====|\u001b[38;5;246mVel1=-317.512672\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]====|\u001b[38;5;246mVel2=-17.463580\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb08575200 for KICK_X in \u001b[38;5;227mlpt.c\u001b[0;36m:\u001b[38;5;192mevolve_lpt\u001b[0;36m:\u001b[0;32m646\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb08595210 for KICK_Y in \u001b[38;5;227mlpt.c\u001b[0;36m:\u001b[38;5;192mevolve_lpt\u001b[0;36m:\u001b[0;32m647\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb085b5220 for KICK_Z in \u001b[38;5;227mlpt.c\u001b[0;36m:\u001b[38;5;192mevolve_lpt\u001b[0;36m:\u001b[0;32m648\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]==|Changing velocities of particles...\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]====|\u001b[38;5;246mmaxkick=982.646441\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]==|Changing velocities of particles done.\n",
"[02:24:17\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]==|Displacing particles...\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]====|\u001b[38;5;246mmaxdrift=0.878076\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]==|Displacing particles done.\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08575200 for KICK_X in \u001b[38;5;227mlpt.c\u001b[0;36m:\u001b[38;5;192mevolve_lpt\u001b[0;36m:\u001b[0;32m697\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08595210 for KICK_Y in \u001b[38;5;227mlpt.c\u001b[0;36m:\u001b[38;5;192mevolve_lpt\u001b[0;36m:\u001b[0;32m698\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb085b5220 for KICK_Z in \u001b[38;5;227mlpt.c\u001b[0;36m:\u001b[38;5;192mevolve_lpt\u001b[0;36m:\u001b[0;32m699\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;147mMODULE \u001b[00m]|\u001b[38;5;147mModuleLPT: Evolving with Lagrangian perturbation theory (using 32 cores) done.\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;159mTIMER \u001b[00m]|LPT evolution: 6.080 CPU - 0.240 wallclock seconds used.\n",
"[02:24:17\u001b[00m|\u001b[38;5;159mTIMER \u001b[00m]|ModuleLPT: 6.275 CPU - 0.250 wallclock seconds used.\n",
"[02:24:17\u001b[00m|\u001b[38;5;147mMODULE \u001b[00m]|\u001b[38;5;147mModuleP3M: Evolving with P3M...\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]====|\u001b[38;5;246mNpm0=64\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]====|\u001b[38;5;246mNpm1=64\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]====|\u001b[38;5;246mNpm2=64\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]==|Read timestepping configuration in '/home/hoellinger/wip3m/results/forcediag1/nsteps20_ts_spm.h5'...\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly allocated memory (20 bytes) at 0x55cb08797450 for forces in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mevolve_p3m\u001b[0;36m:\u001b[0;32m549\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly allocated memory (20 bytes) at 0x55cb08797720 for snapshots in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mevolve_p3m\u001b[0;36m:\u001b[0;32m549\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly allocated memory (160 bytes) at 0x55cb08200cd0 for aKickBeg in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mevolve_p3m\u001b[0;36m:\u001b[0;32m549\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly allocated memory (160 bytes) at 0x55cb081fe4e0 for aKickEnd in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mevolve_p3m\u001b[0;36m:\u001b[0;32m549\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly allocated memory (160 bytes) at 0x55cb081fcad0 for aDriftBeg in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mevolve_p3m\u001b[0;36m:\u001b[0;32m549\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly allocated memory (160 bytes) at 0x55cb081fc9a0 for aDriftEnd in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mevolve_p3m\u001b[0;36m:\u001b[0;32m549\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly allocated memory (168 bytes) at 0x55cb081fa1f0 for aiKick in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mevolve_p3m\u001b[0;36m:\u001b[0;32m549\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly allocated memory (168 bytes) at 0x55cb0825a390 for afKick in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mevolve_p3m\u001b[0;36m:\u001b[0;32m549\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly allocated memory (168 bytes) at 0x55cb08209450 for aDrift in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mevolve_p3m\u001b[0;36m:\u001b[0;32m549\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly allocated memory (160 bytes) at 0x55cb08794480 for aiDrift in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mevolve_p3m\u001b[0;36m:\u001b[0;32m549\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly allocated memory (160 bytes) at 0x55cb087a2b00 for afDrift in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mevolve_p3m\u001b[0;36m:\u001b[0;32m549\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly allocated memory (160 bytes) at 0x55cb08796a40 for aKick in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mevolve_p3m\u001b[0;36m:\u001b[0;32m549\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]==|\u001b[38;5;246mnsteps=20\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]==|\u001b[38;5;246mforces=[true true true true true true true true true true true true true true true true true true true true]\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]==|\u001b[38;5;246msnapshots=[false false false false false false false false false false false false false false false false false false false false]\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]==|\u001b[38;5;246maKickBeg=[0.05 0.07375 0.12125 0.16875 0.21625 0.26375 0.31125 0.35875 0.40625 0.45375 0.50125 0.54875 0.59625 0.64375 0.69125 0.73875 0.78625 0.83375 0.88125 0.92875]\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]==|\u001b[38;5;246maKickEnd=[0.07375 0.12125 0.16875 0.21625 0.26375 0.31125 0.35875 0.40625 0.45375 0.50125 0.54875 0.59625 0.64375 0.69125 0.73875 0.78625 0.83375 0.88125 0.92875 1]\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]==|\u001b[38;5;246maDriftBeg=[0.05 0.0975 0.145 0.1925 0.24 0.2875 0.335 0.3825 0.43 0.4775 0.525 0.5725 0.62 0.6675 0.715 0.7625 0.81 0.8575 0.905 0.9525]\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]==|\u001b[38;5;246maDriftEnd=[0.0975 0.145 0.1925 0.24 0.2875 0.335 0.3825 0.43 0.4775 0.525 0.5725 0.62 0.6675 0.715 0.7625 0.81 0.8575 0.905 0.9525 1]\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]==|\u001b[38;5;246mnkicks=21\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]==|\u001b[38;5;246maiKick=[0.05 0.07375 0.12125 0.16875 0.21625 0.26375 0.31125 0.35875 0.40625 0.45375 0.50125 0.54875 0.59625 0.64375 0.69125 0.73875 0.78625 0.83375 0.88125 0.92875 0.97625]\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]==|\u001b[38;5;246mafKick=[0.07375 0.12125 0.16875 0.21625 0.26375 0.31125 0.35875 0.40625 0.45375 0.50125 0.54875 0.59625 0.64375 0.69125 0.73875 0.78625 0.83375 0.88125 0.92875 0.97625 1]\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]==|\u001b[38;5;246maDrift=[0.05 0.0975 0.145 0.1925 0.24 0.2875 0.335 0.3825 0.43 0.4775 0.525 0.5725 0.62 0.6675 0.715 0.7625 0.81 0.8575 0.905 0.9525 1]\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]==|\u001b[38;5;246mndrifts=20\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]==|\u001b[38;5;246maiDrift=[0.05 0.0975 0.145 0.1925 0.24 0.2875 0.335 0.3825 0.43 0.4775 0.525 0.5725 0.62 0.6675 0.715 0.7625 0.81 0.8575 0.905 0.9525]\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]==|\u001b[38;5;246mafDrift=[0.0975 0.145 0.1925 0.24 0.2875 0.335 0.3825 0.43 0.4775 0.525 0.5725 0.62 0.6675 0.715 0.7625 0.81 0.8575 0.905 0.9525 1]\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]==|\u001b[38;5;246maKick=[0.07375 0.12125 0.16875 0.21625 0.26375 0.31125 0.35875 0.40625 0.45375 0.50125 0.54875 0.59625 0.64375 0.69125 0.73875 0.78625 0.83375 0.88125 0.92875 0.97625]\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]==|Read timestepping configuration in '/home/hoellinger/wip3m/results/forcediag1/nsteps20_ts_spm.h5' done.\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly allocated memory (168 bytes) at 0x55cb087bb520 for DUMMY in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mevolve_p3m\u001b[0;36m:\u001b[0;32m557\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly allocated memory (393216 bytes) at 0x55cb08575200 for x in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mevolve_p3m\u001b[0;36m:\u001b[0;32m564\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly allocated memory (393216 bytes) at 0x55cb085d5210 for p in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mevolve_p3m\u001b[0;36m:\u001b[0;32m565\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly allocated memory (393216 bytes) at 0x55cb08a5b160 for pp in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mevolve_p3m\u001b[0;36m:\u001b[0;32m566\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly allocated memory (1048576 bytes) at 0x55cb08abb170 for density_or_Phi in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mevolve_p3m\u001b[0;36m:\u001b[0;32m567\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]====|\u001b[38;5;246mai=0.050000\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]====|\u001b[38;5;246mhubble_ai=4989.477828\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]====|\u001b[38;5;246mD_ai=160.337420\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]==|OutputForceDiagnostic: /data70/hoellinger/WIP3M/forcediag1/force_diagnostic_spm.txt\n",
"[02:24:17\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]==|OutputSnapshotsBase: particles_\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]====|\u001b[38;5;246mdpm0=1.000000\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]====|\u001b[38;5;246mdpm1=1.000000\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]====|\u001b[38;5;246mdpm2=1.000000\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]==|ModuleP3M: Begin sPM step 1/20, time_kick:0.050000, time_drift=0.050000.\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]====|\u001b[38;5;246mGiven the available memory, 4095 threads could be allocated and 32 threads will be used in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel\u001b[0;36m:\u001b[0;32m347\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]====|\u001b[38;5;246mGiven the available memory, 4095 threads could be allocated and 32 threads will be used in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m73\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]====|Getting density contrast (using 32 cores and 32 arrays, parallel routine 1)...\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]======|\u001b[38;5;246mPerforming CiC binning...\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 0...\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148970000b60 for threadedDensity[7] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148978000b60 for threadedDensity[26] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148980000b60 for threadedDensity[11] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148988000b60 for threadedDensity[28] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 11...\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 28...\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1488d0000b60 for threadedDensity[5] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1488f0000b60 for threadedDensity[24] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 5...\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 24...\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148950000b60 for threadedDensity[9] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1488dc000b60 for threadedDensity[17] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 9...\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 17...\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148990000b60 for threadedDensity[21] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148948000b60 for threadedDensity[31] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148900000b60 for threadedDensity[16] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 31...\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 16...\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 21...\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1489a0000b60 for threadedDensity[3] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1489a8000b60 for threadedDensity[30] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1489b0000b60 for threadedDensity[1] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 30...\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 1...\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 3...\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148928000b60 for threadedDensity[20] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1488e8000b60 for threadedDensity[2] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 20...\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 2...\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1488f8000b60 for threadedDensity[19] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 7...\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 26...\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 19...\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148940000b60 for threadedDensity[27] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1489b8000b60 for threadedDensity[4] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 27...\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 4...\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148968000b60 for threadedDensity[10] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148918000b60 for threadedDensity[15] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 10...\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1488d8000b60 for threadedDensity[29] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1488e0000b60 for threadedDensity[6] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 29...\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 6...\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148908000b60 for threadedDensity[8] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148910000b60 for threadedDensity[23] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 8...\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 23...\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148960000b60 for threadedDensity[13] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148958000b60 for threadedDensity[22] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 13...\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 22...\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 15...\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148998000b60 for threadedDensity[25] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148920000b60 for threadedDensity[12] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 25...\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 12...\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148930000b60 for threadedDensity[14] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148938000b60 for threadedDensity[18] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 14...\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 18...\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 14 done.\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 18 done.\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 3 done.\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 21 done.\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 24 done.\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 5 done.\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 9 done.\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 17 done.\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 28 done.\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 11 done.\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 0 done.\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 19 done.\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 1 done.\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 30 done.\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 7 done.\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 26 done.\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 2 done.\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 20 done.\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 27 done.\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 4 done.\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 16 done.\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 31 done.\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 15 done.\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 10 done.\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 23 done.\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 8 done.\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 6 done.\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 29 done.\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 13 done.\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 22 done.\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 25 done.\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 12 done.\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]======|\u001b[38;5;246mPerforming CiC done.\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]======|\u001b[38;5;246mPerforming CiC reduction...\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x1489b0000b60 for threadedDensity[1] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x1488e8000b60 for threadedDensity[2] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x1489a0000b60 for threadedDensity[3] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x1489b8000b60 for threadedDensity[4] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x1488d0000b60 for threadedDensity[5] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x1488e0000b60 for threadedDensity[6] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148970000b60 for threadedDensity[7] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148908000b60 for threadedDensity[8] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148950000b60 for threadedDensity[9] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148968000b60 for threadedDensity[10] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148980000b60 for threadedDensity[11] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148920000b60 for threadedDensity[12] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148960000b60 for threadedDensity[13] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148930000b60 for threadedDensity[14] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148918000b60 for threadedDensity[15] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148900000b60 for threadedDensity[16] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x1488dc000b60 for threadedDensity[17] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148938000b60 for threadedDensity[18] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x1488f8000b60 for threadedDensity[19] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148928000b60 for threadedDensity[20] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148990000b60 for threadedDensity[21] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148958000b60 for threadedDensity[22] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148910000b60 for threadedDensity[23] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x1488f0000b60 for threadedDensity[24] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148998000b60 for threadedDensity[25] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148978000b60 for threadedDensity[26] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148940000b60 for threadedDensity[27] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148988000b60 for threadedDensity[28] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x1488d8000b60 for threadedDensity[29] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x1489a8000b60 for threadedDensity[30] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148948000b60 for threadedDensity[31] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]======|\u001b[38;5;246mPerforming CiC reduction done.\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]====|Getting density contrast (using 32 cores and 32 arrays, parallel routine 1) done.\n",
"[02:24:17\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]====|Getting gravitational potential, periodic boundary conditions (using 32 cores)...\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated memory (1081344 bytes) at 0x55cb08bbb180 for AUX in \u001b[38;5;227mpoisson_solvers.c\u001b[0;36m:\u001b[38;5;192msolve_poisson_DFT\u001b[0;36m:\u001b[0;32m106\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08bbb180 for AUX in \u001b[38;5;227mpoisson_solvers.c\u001b[0;36m:\u001b[38;5;192msolve_poisson_DFT\u001b[0;36m:\u001b[0;32m116\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]====|Getting gravitational potential, periodic boundary conditions (using 32 cores) done.\n",
"[02:24:17\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]====|Kicking particles (using 32 cores)...\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mnkick=0\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mndrift=0\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246maiKick=0.050000\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246maDrift=0.050000\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mafKick=0.073750\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mbeta_delta=-0.080234\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mbeta_lpt_1=0.000000\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mbeta_lpt_2=0.000000\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mbeta_ext=0.000000\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated memory (1048576 bytes) at 0x55cb08bbb180 for g_pad in \u001b[38;5;227mpmcola.c\u001b[0;36m:\u001b[38;5;192mkick_pm_cola\u001b[0;36m:\u001b[0;32m478\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated memory (393216 bytes) at 0x55cb08cbb190 for pp in \u001b[38;5;227mpmcola.c\u001b[0;36m:\u001b[38;5;192mkick_pm_cola\u001b[0;36m:\u001b[0;32m554\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Acceleration loop, direction 0...\n",
"[02:24:17\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Acceleration loop, direction 0 done.\n",
"[02:24:17\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Kick loop, direction 0...\n",
"[02:24:17\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Kick loop, direction 0 done.\n",
"[02:24:17\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Acceleration loop, direction 1...\n",
"[02:24:17\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Acceleration loop, direction 1 done.\n",
"[02:24:17\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Kick loop, direction 1...\n",
"[02:24:17\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Kick loop, direction 1 done.\n",
"[02:24:17\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Acceleration loop, direction 2...\n",
"[02:24:17\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Acceleration loop, direction 2 done.\n",
"[02:24:17\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Kick loop, direction 2...\n",
"[02:24:17\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Kick loop, direction 2 done.\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08bbb180 for g_pad in \u001b[38;5;227mpmcola.c\u001b[0;36m:\u001b[38;5;192mkick_pm_cola\u001b[0;36m:\u001b[0;32m592\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08cbb190 for pp in \u001b[38;5;227mpmcola.c\u001b[0;36m:\u001b[38;5;192mkick_pm_cola\u001b[0;36m:\u001b[0;32m598\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]====|Kicking particles (using 32 cores) done.\n",
"[02:24:17\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]====|Drifting particles (using 32 cores)...\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mndrift=0\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mnkick=0\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246maiDrift=0.050000\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246maKick=0.073750\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mafDrift=0.097500\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246malpha_p=4.550459\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246malpha_lpt_1=0.000000\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246malpha_lpt_2=0.000000\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246malpha_ext=0.000000\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Drift loop, direction 0...\n",
"[02:24:17\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Drift loop, direction 0 done.\n",
"[02:24:17\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Drift loop, direction 1...\n",
"[02:24:17\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Drift loop, direction 1 done.\n",
"[02:24:17\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Drift loop, direction 2...\n",
"[02:24:17\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Drift loop, direction 2 done.\n",
"[02:24:17\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]====|Drifting particles (using 32 cores) done.\n",
"[02:24:17\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]==|ModuleP3M: End sPM step 1/20, time_kick:0.073750, time_drift=0.097500.\n",
"[02:24:17\u001b[00m|\u001b[38;5;159mTIMER \u001b[00m]==|Step 1/20: Density: 0.350 CPU - 0.012 wallclock seconds used.\n",
"[02:24:17\u001b[00m|\u001b[38;5;159mTIMER \u001b[00m]==|Step 1/20: Potential: 1.012 CPU - 0.037 wallclock seconds used.\n",
"[02:24:17\u001b[00m|\u001b[38;5;159mTIMER \u001b[00m]==|Step 1/20: Accelerations (long-range): 1.242 CPU - 0.044 wallclock seconds used.\n",
"[02:24:17\u001b[00m|\u001b[38;5;159mTIMER \u001b[00m]==|Step 1/20: Accelerations (short-range): 0.380 CPU - 0.012 wallclock seconds used.\n",
"[02:24:17\u001b[00m|\u001b[38;5;159mTIMER \u001b[00m]==|Step 1/20: Kick: 1.154 CPU - 0.038 wallclock seconds used.\n",
"[02:24:17\u001b[00m|\u001b[38;5;159mTIMER \u001b[00m]==|Step 1/20: Drift: 2.087 CPU - 0.068 wallclock seconds used.\n",
"[02:24:17\u001b[00m|\u001b[38;5;159mTIMER \u001b[00m]==|Step 1/20: Inputs: 0.000 CPU - 0.000 wallclock seconds used.\n",
"[02:24:17\u001b[00m|\u001b[38;5;159mTIMER \u001b[00m]==|Step 1/20: Diagnostic: 0.000 CPU - 0.000 wallclock seconds used.\n",
"[02:24:17\u001b[00m|\u001b[38;5;159mTIMER \u001b[00m]==|Step 1/20: Outputs: 0.000 CPU - 0.000 wallclock seconds used.\n",
"[02:24:17\u001b[00m|\u001b[38;5;159mTIMER \u001b[00m]==|Step 1/20: Total Evolution: 6.223 CPU - 0.211 wallclock seconds used.\n",
"[02:24:17\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]==|ModuleP3M: Begin sPM step 2/20, time_kick:0.073750, time_drift=0.097500.\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]====|\u001b[38;5;246mGiven the available memory, 4095 threads could be allocated and 32 threads will be used in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel\u001b[0;36m:\u001b[0;32m347\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]====|\u001b[38;5;246mGiven the available memory, 4095 threads could be allocated and 32 threads will be used in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m73\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]====|Getting density contrast (using 32 cores and 32 arrays, parallel routine 1)...\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]======|\u001b[38;5;246mPerforming CiC binning...\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 0...\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148970000b60 for threadedDensity[7] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1488f8000b60 for threadedDensity[19] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 7...\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 19...\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1488d0000b60 for threadedDensity[5] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1488f0000b60 for threadedDensity[24] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 5...\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 24...\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1489a0000b60 for threadedDensity[3] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148990000b60 for threadedDensity[21] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 3...\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 21...\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148988000b60 for threadedDensity[28] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148980000b60 for threadedDensity[11] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 28...\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 11...\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148950000b60 for threadedDensity[9] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1488dc000b60 for threadedDensity[17] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 9...\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 17...\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1489b0000b60 for threadedDensity[1] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1489a8000b60 for threadedDensity[30] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 1...\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 30...\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148978000b60 for threadedDensity[26] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148928000b60 for threadedDensity[20] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1488e8000b60 for threadedDensity[2] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 20...\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 2...\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 26...\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148940000b60 for threadedDensity[27] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1489b8000b60 for threadedDensity[4] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 27...\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 4...\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148900000b60 for threadedDensity[16] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148948000b60 for threadedDensity[31] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 16...\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 31...\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1488d8000b60 for threadedDensity[29] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1488e0000b60 for threadedDensity[6] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 29...\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 6...\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148918000b60 for threadedDensity[15] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148968000b60 for threadedDensity[10] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 15...\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 10...\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148908000b60 for threadedDensity[8] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148910000b60 for threadedDensity[23] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 8...\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 23...\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148958000b60 for threadedDensity[22] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148960000b60 for threadedDensity[13] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 22...\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 13...\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148938000b60 for threadedDensity[18] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148930000b60 for threadedDensity[14] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 18...\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 14...\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148920000b60 for threadedDensity[12] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148998000b60 for threadedDensity[25] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 12...\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 25...\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 12 done.\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 25 done.\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 3 done.\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 21 done.\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 5 done.\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 24 done.\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 28 done.\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 11 done.\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 17 done.\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 9 done.\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 19 done.\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 7 done.\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 1 done.\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 30 done.\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 20 done.\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 2 done.\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 0 done.\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 26 done.\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 31 done.\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 16 done.\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 27 done.\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 4 done.\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 8 done.\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 23 done.\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 13 done.\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 22 done.\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 29 done.\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 6 done.\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 15 done.\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 10 done.\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 14 done.\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 18 done.\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]======|\u001b[38;5;246mPerforming CiC done.\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]======|\u001b[38;5;246mPerforming CiC reduction...\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x1489b0000b60 for threadedDensity[1] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x1488e8000b60 for threadedDensity[2] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x1489a0000b60 for threadedDensity[3] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x1489b8000b60 for threadedDensity[4] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x1488d0000b60 for threadedDensity[5] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x1488e0000b60 for threadedDensity[6] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148970000b60 for threadedDensity[7] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148908000b60 for threadedDensity[8] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148950000b60 for threadedDensity[9] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148968000b60 for threadedDensity[10] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148980000b60 for threadedDensity[11] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148920000b60 for threadedDensity[12] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148960000b60 for threadedDensity[13] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148930000b60 for threadedDensity[14] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148918000b60 for threadedDensity[15] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148900000b60 for threadedDensity[16] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x1488dc000b60 for threadedDensity[17] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148938000b60 for threadedDensity[18] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x1488f8000b60 for threadedDensity[19] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148928000b60 for threadedDensity[20] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148990000b60 for threadedDensity[21] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148958000b60 for threadedDensity[22] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148910000b60 for threadedDensity[23] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x1488f0000b60 for threadedDensity[24] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148998000b60 for threadedDensity[25] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148978000b60 for threadedDensity[26] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148940000b60 for threadedDensity[27] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148988000b60 for threadedDensity[28] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x1488d8000b60 for threadedDensity[29] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x1489a8000b60 for threadedDensity[30] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148948000b60 for threadedDensity[31] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]======|\u001b[38;5;246mPerforming CiC reduction done.\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]====|Getting density contrast (using 32 cores and 32 arrays, parallel routine 1) done.\n",
"[02:24:17\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]====|Getting gravitational potential, periodic boundary conditions (using 32 cores)...\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated memory (1081344 bytes) at 0x55cb08bbb180 for AUX in \u001b[38;5;227mpoisson_solvers.c\u001b[0;36m:\u001b[38;5;192msolve_poisson_DFT\u001b[0;36m:\u001b[0;32m106\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08bbb180 for AUX in \u001b[38;5;227mpoisson_solvers.c\u001b[0;36m:\u001b[38;5;192msolve_poisson_DFT\u001b[0;36m:\u001b[0;32m116\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]====|Getting gravitational potential, periodic boundary conditions (using 32 cores) done.\n",
"[02:24:17\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]====|Kicking particles (using 32 cores)...\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mnkick=1\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mndrift=1\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246maiKick=0.073750\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246maDrift=0.097500\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mafKick=0.121250\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mbeta_delta=-0.128106\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mbeta_lpt_1=0.000000\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mbeta_lpt_2=0.000000\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mbeta_ext=0.000000\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated memory (1048576 bytes) at 0x55cb08bbb180 for g_pad in \u001b[38;5;227mpmcola.c\u001b[0;36m:\u001b[38;5;192mkick_pm_cola\u001b[0;36m:\u001b[0;32m478\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated memory (393216 bytes) at 0x55cb08cbb190 for pp in \u001b[38;5;227mpmcola.c\u001b[0;36m:\u001b[38;5;192mkick_pm_cola\u001b[0;36m:\u001b[0;32m554\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Acceleration loop, direction 0...\n",
"[02:24:17\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Acceleration loop, direction 0 done.\n",
"[02:24:17\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Kick loop, direction 0...\n",
"[02:24:17\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Kick loop, direction 0 done.\n",
"[02:24:17\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Acceleration loop, direction 1...\n",
"[02:24:17\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Acceleration loop, direction 1 done.\n",
"[02:24:17\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Kick loop, direction 1...\n",
"[02:24:17\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Kick loop, direction 1 done.\n",
"[02:24:17\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Acceleration loop, direction 2...\n",
"[02:24:17\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Acceleration loop, direction 2 done.\n",
"[02:24:17\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Kick loop, direction 2...\n",
"[02:24:17\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Kick loop, direction 2 done.\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08bbb180 for g_pad in \u001b[38;5;227mpmcola.c\u001b[0;36m:\u001b[38;5;192mkick_pm_cola\u001b[0;36m:\u001b[0;32m592\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08cbb190 for pp in \u001b[38;5;227mpmcola.c\u001b[0;36m:\u001b[38;5;192mkick_pm_cola\u001b[0;36m:\u001b[0;32m598\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]====|Kicking particles (using 32 cores) done.\n",
"[02:24:17\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]====|Drifting particles (using 32 cores)...\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mndrift=1\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mnkick=1\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246maiDrift=0.097500\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246maKick=0.121250\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mafDrift=0.145000\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246malpha_p=2.062962\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246malpha_lpt_1=0.000000\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246malpha_lpt_2=0.000000\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246malpha_ext=0.000000\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Drift loop, direction 0...\n",
"[02:24:17\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Drift loop, direction 0 done.\n",
"[02:24:17\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Drift loop, direction 1...\n",
"[02:24:17\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Drift loop, direction 1 done.\n",
"[02:24:17\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Drift loop, direction 2...\n",
"[02:24:17\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Drift loop, direction 2 done.\n",
"[02:24:17\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]====|Drifting particles (using 32 cores) done.\n",
"[02:24:17\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]==|ModuleP3M: End sPM step 2/20, time_kick:0.121250, time_drift=0.145000.\n",
"[02:24:17\u001b[00m|\u001b[38;5;159mTIMER \u001b[00m]==|Step 2/20: Density: 0.545 CPU - 0.018 wallclock seconds used.\n",
"[02:24:17\u001b[00m|\u001b[38;5;159mTIMER \u001b[00m]==|Step 2/20: Potential: 0.821 CPU - 0.028 wallclock seconds used.\n",
"[02:24:17\u001b[00m|\u001b[38;5;159mTIMER \u001b[00m]==|Step 2/20: Accelerations (long-range): 0.450 CPU - 0.015 wallclock seconds used.\n",
"[02:24:17\u001b[00m|\u001b[38;5;159mTIMER \u001b[00m]==|Step 2/20: Accelerations (short-range): 0.185 CPU - 0.006 wallclock seconds used.\n",
"[02:24:17\u001b[00m|\u001b[38;5;159mTIMER \u001b[00m]==|Step 2/20: Kick: 0.032 CPU - 0.001 wallclock seconds used.\n",
"[02:24:17\u001b[00m|\u001b[38;5;159mTIMER \u001b[00m]==|Step 2/20: Drift: 0.000 CPU - 0.000 wallclock seconds used.\n",
"[02:24:17\u001b[00m|\u001b[38;5;159mTIMER \u001b[00m]==|Step 2/20: Inputs: 0.000 CPU - 0.000 wallclock seconds used.\n",
"[02:24:17\u001b[00m|\u001b[38;5;159mTIMER \u001b[00m]==|Step 2/20: Diagnostic: 0.000 CPU - 0.000 wallclock seconds used.\n",
"[02:24:17\u001b[00m|\u001b[38;5;159mTIMER \u001b[00m]==|Step 2/20: Outputs: 0.000 CPU - 0.000 wallclock seconds used.\n",
"[02:24:17\u001b[00m|\u001b[38;5;159mTIMER \u001b[00m]==|Step 2/20: Total Evolution: 2.033 CPU - 0.068 wallclock seconds used.\n",
"[02:24:17\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]==|ModuleP3M: Begin sPM step 3/20, time_kick:0.121250, time_drift=0.145000.\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]====|\u001b[38;5;246mGiven the available memory, 4095 threads could be allocated and 32 threads will be used in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel\u001b[0;36m:\u001b[0;32m347\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]====|\u001b[38;5;246mGiven the available memory, 4095 threads could be allocated and 32 threads will be used in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m73\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]====|Getting density contrast (using 32 cores and 32 arrays, parallel routine 1)...\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]======|\u001b[38;5;246mPerforming CiC binning...\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 0...\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148978000b60 for threadedDensity[26] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 26...\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148950000b60 for threadedDensity[9] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148990000b60 for threadedDensity[21] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1489a0000b60 for threadedDensity[3] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 21...\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 3...\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 9...\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1488d0000b60 for threadedDensity[5] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1488f0000b60 for threadedDensity[24] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 5...\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 24...\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148988000b60 for threadedDensity[28] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148980000b60 for threadedDensity[11] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 28...\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 11...\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1489b0000b60 for threadedDensity[1] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1489a8000b60 for threadedDensity[30] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 1...\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 30...\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148970000b60 for threadedDensity[7] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1488f8000b60 for threadedDensity[19] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 7...\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 19...\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148928000b60 for threadedDensity[20] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1488e8000b60 for threadedDensity[2] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 20...\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 2...\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1488dc000b60 for threadedDensity[17] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148948000b60 for threadedDensity[31] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148900000b60 for threadedDensity[16] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 31...\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 16...\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 17...\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148940000b60 for threadedDensity[27] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1489b8000b60 for threadedDensity[4] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 27...\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 4...\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148958000b60 for threadedDensity[22] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148960000b60 for threadedDensity[13] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 13...\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 22...\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1488d8000b60 for threadedDensity[29] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1488e0000b60 for threadedDensity[6] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 29...\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 6...\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148918000b60 for threadedDensity[15] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148968000b60 for threadedDensity[10] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 15...\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 10...\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148910000b60 for threadedDensity[23] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148908000b60 for threadedDensity[8] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 23...\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 8...\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148998000b60 for threadedDensity[25] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148920000b60 for threadedDensity[12] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 25...\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 12...\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148930000b60 for threadedDensity[14] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148938000b60 for threadedDensity[18] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 14...\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 18...\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 14 done.\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 18 done.\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 24 done.\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 5 done.\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 3 done.\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 21 done.\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 9 done.\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 0 done.\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 11 done.\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 28 done.\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 19 done.\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 7 done.\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 1 done.\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 30 done.\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 26 done.\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 17 done.\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 2 done.\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 20 done.\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 4 done.\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 27 done.\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 16 done.\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 31 done.\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 8 done.\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 23 done.\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 15 done.\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 10 done.\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 6 done.\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 29 done.\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 22 done.\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 13 done.\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 12 done.\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 25 done.\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]======|\u001b[38;5;246mPerforming CiC done.\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]======|\u001b[38;5;246mPerforming CiC reduction...\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x1489b0000b60 for threadedDensity[1] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x1488e8000b60 for threadedDensity[2] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x1489a0000b60 for threadedDensity[3] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x1489b8000b60 for threadedDensity[4] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x1488d0000b60 for threadedDensity[5] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x1488e0000b60 for threadedDensity[6] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148970000b60 for threadedDensity[7] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148908000b60 for threadedDensity[8] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148950000b60 for threadedDensity[9] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148968000b60 for threadedDensity[10] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148980000b60 for threadedDensity[11] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148920000b60 for threadedDensity[12] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148960000b60 for threadedDensity[13] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148930000b60 for threadedDensity[14] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148918000b60 for threadedDensity[15] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148900000b60 for threadedDensity[16] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x1488dc000b60 for threadedDensity[17] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148938000b60 for threadedDensity[18] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x1488f8000b60 for threadedDensity[19] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148928000b60 for threadedDensity[20] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148990000b60 for threadedDensity[21] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148958000b60 for threadedDensity[22] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148910000b60 for threadedDensity[23] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x1488f0000b60 for threadedDensity[24] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148998000b60 for threadedDensity[25] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148978000b60 for threadedDensity[26] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148940000b60 for threadedDensity[27] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148988000b60 for threadedDensity[28] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x1488d8000b60 for threadedDensity[29] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x1489a8000b60 for threadedDensity[30] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148948000b60 for threadedDensity[31] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]======|\u001b[38;5;246mPerforming CiC reduction done.\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]====|Getting density contrast (using 32 cores and 32 arrays, parallel routine 1) done.\n",
"[02:24:17\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]====|Getting gravitational potential, periodic boundary conditions (using 32 cores)...\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated memory (1081344 bytes) at 0x55cb08bbb180 for AUX in \u001b[38;5;227mpoisson_solvers.c\u001b[0;36m:\u001b[38;5;192msolve_poisson_DFT\u001b[0;36m:\u001b[0;32m106\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08bbb180 for AUX in \u001b[38;5;227mpoisson_solvers.c\u001b[0;36m:\u001b[38;5;192msolve_poisson_DFT\u001b[0;36m:\u001b[0;32m116\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]====|Getting gravitational potential, periodic boundary conditions (using 32 cores) done.\n",
"[02:24:17\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]====|Kicking particles (using 32 cores)...\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mnkick=2\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mndrift=2\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246maiKick=0.121250\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246maDrift=0.145000\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mafKick=0.168750\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mbeta_delta=-0.104362\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mbeta_lpt_1=0.000000\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mbeta_lpt_2=0.000000\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mbeta_ext=0.000000\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated memory (1048576 bytes) at 0x55cb08bbb180 for g_pad in \u001b[38;5;227mpmcola.c\u001b[0;36m:\u001b[38;5;192mkick_pm_cola\u001b[0;36m:\u001b[0;32m478\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated memory (393216 bytes) at 0x55cb08cbb190 for pp in \u001b[38;5;227mpmcola.c\u001b[0;36m:\u001b[38;5;192mkick_pm_cola\u001b[0;36m:\u001b[0;32m554\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Acceleration loop, direction 0...\n",
"[02:24:17\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Acceleration loop, direction 0 done.\n",
"[02:24:17\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Kick loop, direction 0...\n",
"[02:24:17\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Kick loop, direction 0 done.\n",
"[02:24:17\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Acceleration loop, direction 1...\n",
"[02:24:17\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Acceleration loop, direction 1 done.\n",
"[02:24:17\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Kick loop, direction 1...\n",
"[02:24:17\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Kick loop, direction 1 done.\n",
"[02:24:17\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Acceleration loop, direction 2...\n",
"[02:24:17\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Acceleration loop, direction 2 done.\n",
"[02:24:17\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Kick loop, direction 2...\n",
"[02:24:17\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Kick loop, direction 2 done.\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08bbb180 for g_pad in \u001b[38;5;227mpmcola.c\u001b[0;36m:\u001b[38;5;192mkick_pm_cola\u001b[0;36m:\u001b[0;32m592\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08cbb190 for pp in \u001b[38;5;227mpmcola.c\u001b[0;36m:\u001b[38;5;192mkick_pm_cola\u001b[0;36m:\u001b[0;32m598\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]====|Kicking particles (using 32 cores) done.\n",
"[02:24:17\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]====|Drifting particles (using 32 cores)...\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mndrift=2\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mnkick=2\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246maiDrift=0.145000\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246maKick=0.168750\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mafDrift=0.192500\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246malpha_p=1.237460\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246malpha_lpt_1=0.000000\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246malpha_lpt_2=0.000000\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246malpha_ext=0.000000\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Drift loop, direction 0...\n",
"[02:24:17\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Drift loop, direction 0 done.\n",
"[02:24:17\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Drift loop, direction 1...\n",
"[02:24:17\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Drift loop, direction 1 done.\n",
"[02:24:17\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Drift loop, direction 2...\n",
"[02:24:17\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Drift loop, direction 2 done.\n",
"[02:24:17\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]====|Drifting particles (using 32 cores) done.\n",
"[02:24:17\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]==|ModuleP3M: End sPM step 3/20, time_kick:0.168750, time_drift=0.192500.\n",
"[02:24:17\u001b[00m|\u001b[38;5;159mTIMER \u001b[00m]==|Step 3/20: Density: 0.349 CPU - 0.011 wallclock seconds used.\n",
"[02:24:17\u001b[00m|\u001b[38;5;159mTIMER \u001b[00m]==|Step 3/20: Potential: 0.808 CPU - 0.029 wallclock seconds used.\n",
"[02:24:17\u001b[00m|\u001b[38;5;159mTIMER \u001b[00m]==|Step 3/20: Accelerations (long-range): 1.247 CPU - 0.044 wallclock seconds used.\n",
"[02:24:17\u001b[00m|\u001b[38;5;159mTIMER \u001b[00m]==|Step 3/20: Accelerations (short-range): 0.375 CPU - 0.012 wallclock seconds used.\n",
"[02:24:17\u001b[00m|\u001b[38;5;159mTIMER \u001b[00m]==|Step 3/20: Kick: 1.157 CPU - 0.038 wallclock seconds used.\n",
"[02:24:17\u001b[00m|\u001b[38;5;159mTIMER \u001b[00m]==|Step 3/20: Drift: 2.252 CPU - 0.111 wallclock seconds used.\n",
"[02:24:17\u001b[00m|\u001b[38;5;159mTIMER \u001b[00m]==|Step 3/20: Inputs: 0.000 CPU - 0.000 wallclock seconds used.\n",
"[02:24:17\u001b[00m|\u001b[38;5;159mTIMER \u001b[00m]==|Step 3/20: Diagnostic: 0.000 CPU - 0.000 wallclock seconds used.\n",
"[02:24:17\u001b[00m|\u001b[38;5;159mTIMER \u001b[00m]==|Step 3/20: Outputs: 0.000 CPU - 0.000 wallclock seconds used.\n",
"[02:24:17\u001b[00m|\u001b[38;5;159mTIMER \u001b[00m]==|Step 3/20: Total Evolution: 6.188 CPU - 0.245 wallclock seconds used.\n",
"[02:24:17\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]==|ModuleP3M: Begin sPM step 4/20, time_kick:0.168750, time_drift=0.192500.\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]====|\u001b[38;5;246mGiven the available memory, 4095 threads could be allocated and 32 threads will be used in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel\u001b[0;36m:\u001b[0;32m347\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]====|\u001b[38;5;246mGiven the available memory, 4095 threads could be allocated and 32 threads will be used in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m73\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]====|Getting density contrast (using 32 cores and 32 arrays, parallel routine 1)...\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]======|\u001b[38;5;246mPerforming CiC binning...\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1489a0000b60 for threadedDensity[3] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148990000b60 for threadedDensity[21] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 3...\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 21...\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1488f0000b60 for threadedDensity[24] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1488d0000b60 for threadedDensity[5] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 24...\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 5...\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148980000b60 for threadedDensity[11] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148988000b60 for threadedDensity[28] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 11...\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 28...\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148950000b60 for threadedDensity[9] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1489b0000b60 for threadedDensity[1] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1489a8000b60 for threadedDensity[30] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 1...\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 30...\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 9...\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148928000b60 for threadedDensity[20] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1488e8000b60 for threadedDensity[2] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 20...\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 2...\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1488f8000b60 for threadedDensity[19] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 19...\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148970000b60 for threadedDensity[7] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148978000b60 for threadedDensity[26] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1488dc000b60 for threadedDensity[17] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 26...\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 17...\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 7...\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148918000b60 for threadedDensity[15] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148968000b60 for threadedDensity[10] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 15...\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 10...\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148940000b60 for threadedDensity[27] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1489b8000b60 for threadedDensity[4] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 27...\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 4...\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148900000b60 for threadedDensity[16] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148948000b60 for threadedDensity[31] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 16...\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 31...\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148910000b60 for threadedDensity[23] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148908000b60 for threadedDensity[8] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 23...\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 8...\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1488d8000b60 for threadedDensity[29] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1488e0000b60 for threadedDensity[6] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 29...\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 6...\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148930000b60 for threadedDensity[14] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148938000b60 for threadedDensity[18] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 14...\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 18...\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148960000b60 for threadedDensity[13] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148958000b60 for threadedDensity[22] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 13...\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 22...\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148998000b60 for threadedDensity[25] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 25...\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148920000b60 for threadedDensity[12] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 12...\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 0...\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 25 done.\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 12 done.\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 24 done.\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 5 done.\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 21 done.\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 3 done.\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 28 done.\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 11 done.\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 9 done.\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 19 done.\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 7 done.\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 1 done.\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 30 done.\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 20 done.\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 2 done.\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 0 done.\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 17 done.\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 27 done.\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 4 done.\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 31 done.\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 16 done.\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 10 done.\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 15 done.\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 13 done.\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 22 done.\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 23 done.\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 8 done.\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 6 done.\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 29 done.\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 18 done.\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 14 done.\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 26 done.\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]======|\u001b[38;5;246mPerforming CiC done.\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]======|\u001b[38;5;246mPerforming CiC reduction...\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x1489b0000b60 for threadedDensity[1] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x1488e8000b60 for threadedDensity[2] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x1489a0000b60 for threadedDensity[3] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x1489b8000b60 for threadedDensity[4] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x1488d0000b60 for threadedDensity[5] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x1488e0000b60 for threadedDensity[6] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148970000b60 for threadedDensity[7] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148908000b60 for threadedDensity[8] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148950000b60 for threadedDensity[9] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148968000b60 for threadedDensity[10] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148980000b60 for threadedDensity[11] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148920000b60 for threadedDensity[12] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148960000b60 for threadedDensity[13] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148930000b60 for threadedDensity[14] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148918000b60 for threadedDensity[15] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:17\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148900000b60 for threadedDensity[16] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x1488dc000b60 for threadedDensity[17] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148938000b60 for threadedDensity[18] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x1488f8000b60 for threadedDensity[19] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148928000b60 for threadedDensity[20] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148990000b60 for threadedDensity[21] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148958000b60 for threadedDensity[22] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148910000b60 for threadedDensity[23] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x1488f0000b60 for threadedDensity[24] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148998000b60 for threadedDensity[25] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148978000b60 for threadedDensity[26] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148940000b60 for threadedDensity[27] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148988000b60 for threadedDensity[28] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x1488d8000b60 for threadedDensity[29] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x1489a8000b60 for threadedDensity[30] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148948000b60 for threadedDensity[31] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]======|\u001b[38;5;246mPerforming CiC reduction done.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]====|Getting density contrast (using 32 cores and 32 arrays, parallel routine 1) done.\n",
"[02:24:18\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]====|Getting gravitational potential, periodic boundary conditions (using 32 cores)...\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated memory (1081344 bytes) at 0x55cb08bbb180 for AUX in \u001b[38;5;227mpoisson_solvers.c\u001b[0;36m:\u001b[38;5;192msolve_poisson_DFT\u001b[0;36m:\u001b[0;32m106\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08bbb180 for AUX in \u001b[38;5;227mpoisson_solvers.c\u001b[0;36m:\u001b[38;5;192msolve_poisson_DFT\u001b[0;36m:\u001b[0;32m116\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]====|Getting gravitational potential, periodic boundary conditions (using 32 cores) done.\n",
"[02:24:18\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]====|Kicking particles (using 32 cores)...\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mnkick=3\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mndrift=3\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246maiKick=0.168750\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246maDrift=0.192500\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mafKick=0.216250\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mbeta_delta=-0.090038\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mbeta_lpt_1=0.000000\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mbeta_lpt_2=0.000000\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mbeta_ext=0.000000\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated memory (1048576 bytes) at 0x55cb08bbb180 for g_pad in \u001b[38;5;227mpmcola.c\u001b[0;36m:\u001b[38;5;192mkick_pm_cola\u001b[0;36m:\u001b[0;32m478\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated memory (393216 bytes) at 0x55cb08cbb190 for pp in \u001b[38;5;227mpmcola.c\u001b[0;36m:\u001b[38;5;192mkick_pm_cola\u001b[0;36m:\u001b[0;32m554\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Acceleration loop, direction 0...\n",
"[02:24:18\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Acceleration loop, direction 0 done.\n",
"[02:24:18\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Kick loop, direction 0...\n",
"[02:24:18\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Kick loop, direction 0 done.\n",
"[02:24:18\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Acceleration loop, direction 1...\n",
"[02:24:18\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Acceleration loop, direction 1 done.\n",
"[02:24:18\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Kick loop, direction 1...\n",
"[02:24:18\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Kick loop, direction 1 done.\n",
"[02:24:18\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Acceleration loop, direction 2...\n",
"[02:24:18\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Acceleration loop, direction 2 done.\n",
"[02:24:18\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Kick loop, direction 2...\n",
"[02:24:18\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Kick loop, direction 2 done.\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08bbb180 for g_pad in \u001b[38;5;227mpmcola.c\u001b[0;36m:\u001b[38;5;192mkick_pm_cola\u001b[0;36m:\u001b[0;32m592\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08cbb190 for pp in \u001b[38;5;227mpmcola.c\u001b[0;36m:\u001b[38;5;192mkick_pm_cola\u001b[0;36m:\u001b[0;32m598\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]====|Kicking particles (using 32 cores) done.\n",
"[02:24:18\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]====|Drifting particles (using 32 cores)...\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mndrift=3\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mnkick=3\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246maiDrift=0.192500\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246maKick=0.216250\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mafDrift=0.240000\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246malpha_p=0.843966\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246malpha_lpt_1=0.000000\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246malpha_lpt_2=0.000000\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246malpha_ext=0.000000\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Drift loop, direction 0...\n",
"[02:24:18\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Drift loop, direction 0 done.\n",
"[02:24:18\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Drift loop, direction 1...\n",
"[02:24:18\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Drift loop, direction 1 done.\n",
"[02:24:18\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Drift loop, direction 2...\n",
"[02:24:18\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Drift loop, direction 2 done.\n",
"[02:24:18\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]====|Drifting particles (using 32 cores) done.\n",
"[02:24:18\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]==|ModuleP3M: End sPM step 4/20, time_kick:0.216250, time_drift=0.240000.\n",
"[02:24:18\u001b[00m|\u001b[38;5;159mTIMER \u001b[00m]==|Step 4/20: Density: 7.632 CPU - 0.251 wallclock seconds used.\n",
"[02:24:18\u001b[00m|\u001b[38;5;159mTIMER \u001b[00m]==|Step 4/20: Potential: 1.016 CPU - 0.037 wallclock seconds used.\n",
"[02:24:18\u001b[00m|\u001b[38;5;159mTIMER \u001b[00m]==|Step 4/20: Accelerations (long-range): 0.457 CPU - 0.015 wallclock seconds used.\n",
"[02:24:18\u001b[00m|\u001b[38;5;159mTIMER \u001b[00m]==|Step 4/20: Accelerations (short-range): 0.378 CPU - 0.012 wallclock seconds used.\n",
"[02:24:18\u001b[00m|\u001b[38;5;159mTIMER \u001b[00m]==|Step 4/20: Kick: 0.000 CPU - 0.001 wallclock seconds used.\n",
"[02:24:18\u001b[00m|\u001b[38;5;159mTIMER \u001b[00m]==|Step 4/20: Drift: 0.000 CPU - 0.000 wallclock seconds used.\n",
"[02:24:18\u001b[00m|\u001b[38;5;159mTIMER \u001b[00m]==|Step 4/20: Inputs: 0.000 CPU - 0.000 wallclock seconds used.\n",
"[02:24:18\u001b[00m|\u001b[38;5;159mTIMER \u001b[00m]==|Step 4/20: Diagnostic: 0.000 CPU - 0.000 wallclock seconds used.\n",
"[02:24:18\u001b[00m|\u001b[38;5;159mTIMER \u001b[00m]==|Step 4/20: Outputs: 0.000 CPU - 0.000 wallclock seconds used.\n",
"[02:24:18\u001b[00m|\u001b[38;5;159mTIMER \u001b[00m]==|Step 4/20: Total Evolution: 9.484 CPU - 0.317 wallclock seconds used.\n",
"[02:24:18\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]==|ModuleP3M: Begin sPM step 5/20, time_kick:0.216250, time_drift=0.240000.\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]====|\u001b[38;5;246mGiven the available memory, 4095 threads could be allocated and 32 threads will be used in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel\u001b[0;36m:\u001b[0;32m347\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]====|\u001b[38;5;246mGiven the available memory, 4095 threads could be allocated and 32 threads will be used in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m73\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]====|Getting density contrast (using 32 cores and 32 arrays, parallel routine 1)...\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]======|\u001b[38;5;246mPerforming CiC binning...\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 0...\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148970000b60 for threadedDensity[7] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1488f8000b60 for threadedDensity[19] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 7...\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 19...\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1488f0000b60 for threadedDensity[24] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1488d0000b60 for threadedDensity[5] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 24...\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 5...\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148990000b60 for threadedDensity[21] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1489a0000b60 for threadedDensity[3] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 21...\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 3...\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148988000b60 for threadedDensity[28] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148980000b60 for threadedDensity[11] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 28...\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 11...\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148950000b60 for threadedDensity[9] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1489a8000b60 for threadedDensity[30] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1489b0000b60 for threadedDensity[1] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 30...\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 1...\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 9...\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148928000b60 for threadedDensity[20] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1488e8000b60 for threadedDensity[2] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 20...\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 2...\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1488dc000b60 for threadedDensity[17] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148978000b60 for threadedDensity[26] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 26...\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 17...\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148940000b60 for threadedDensity[27] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1489b8000b60 for threadedDensity[4] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 27...\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 4...\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148948000b60 for threadedDensity[31] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148900000b60 for threadedDensity[16] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 31...\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 16...\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148960000b60 for threadedDensity[13] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148958000b60 for threadedDensity[22] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 13...\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 22...\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148968000b60 for threadedDensity[10] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148918000b60 for threadedDensity[15] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 10...\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 15...\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1488d8000b60 for threadedDensity[29] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1488e0000b60 for threadedDensity[6] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 29...\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 6...\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148910000b60 for threadedDensity[23] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148908000b60 for threadedDensity[8] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 23...\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 8...\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148938000b60 for threadedDensity[18] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148930000b60 for threadedDensity[14] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 18...\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 14...\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148998000b60 for threadedDensity[25] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148920000b60 for threadedDensity[12] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 25...\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 12...\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 12 done.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 25 done.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 24 done.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 5 done.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 3 done.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 21 done.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 9 done.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 0 done.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 28 done.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 11 done.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 7 done.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 19 done.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 1 done.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 30 done.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 20 done.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 2 done.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 26 done.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 17 done.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 31 done.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 16 done.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 4 done.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 27 done.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 23 done.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 8 done.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 15 done.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 10 done.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 13 done.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 22 done.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 14 done.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 18 done.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 29 done.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 6 done.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]======|\u001b[38;5;246mPerforming CiC done.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]======|\u001b[38;5;246mPerforming CiC reduction...\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x1489b0000b60 for threadedDensity[1] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x1488e8000b60 for threadedDensity[2] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x1489a0000b60 for threadedDensity[3] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x1489b8000b60 for threadedDensity[4] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x1488d0000b60 for threadedDensity[5] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x1488e0000b60 for threadedDensity[6] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148970000b60 for threadedDensity[7] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148908000b60 for threadedDensity[8] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148950000b60 for threadedDensity[9] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148968000b60 for threadedDensity[10] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148980000b60 for threadedDensity[11] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148920000b60 for threadedDensity[12] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148960000b60 for threadedDensity[13] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148930000b60 for threadedDensity[14] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148918000b60 for threadedDensity[15] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148900000b60 for threadedDensity[16] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x1488dc000b60 for threadedDensity[17] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148938000b60 for threadedDensity[18] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x1488f8000b60 for threadedDensity[19] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148928000b60 for threadedDensity[20] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148990000b60 for threadedDensity[21] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148958000b60 for threadedDensity[22] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148910000b60 for threadedDensity[23] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x1488f0000b60 for threadedDensity[24] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148998000b60 for threadedDensity[25] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148978000b60 for threadedDensity[26] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148940000b60 for threadedDensity[27] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148988000b60 for threadedDensity[28] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x1488d8000b60 for threadedDensity[29] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x1489a8000b60 for threadedDensity[30] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148948000b60 for threadedDensity[31] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]======|\u001b[38;5;246mPerforming CiC reduction done.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]====|Getting density contrast (using 32 cores and 32 arrays, parallel routine 1) done.\n",
"[02:24:18\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]====|Getting gravitational potential, periodic boundary conditions (using 32 cores)...\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated memory (1081344 bytes) at 0x55cb08bbb180 for AUX in \u001b[38;5;227mpoisson_solvers.c\u001b[0;36m:\u001b[38;5;192msolve_poisson_DFT\u001b[0;36m:\u001b[0;32m106\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08bbb180 for AUX in \u001b[38;5;227mpoisson_solvers.c\u001b[0;36m:\u001b[38;5;192msolve_poisson_DFT\u001b[0;36m:\u001b[0;32m116\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]====|Getting gravitational potential, periodic boundary conditions (using 32 cores) done.\n",
"[02:24:18\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]====|Kicking particles (using 32 cores)...\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mnkick=4\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mndrift=4\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246maiKick=0.216250\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246maDrift=0.240000\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mafKick=0.263750\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mbeta_delta=-0.080000\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mbeta_lpt_1=0.000000\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mbeta_lpt_2=0.000000\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mbeta_ext=0.000000\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated memory (1048576 bytes) at 0x55cb08bbb180 for g_pad in \u001b[38;5;227mpmcola.c\u001b[0;36m:\u001b[38;5;192mkick_pm_cola\u001b[0;36m:\u001b[0;32m478\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated memory (393216 bytes) at 0x55cb08cbb190 for pp in \u001b[38;5;227mpmcola.c\u001b[0;36m:\u001b[38;5;192mkick_pm_cola\u001b[0;36m:\u001b[0;32m554\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Acceleration loop, direction 0...\n",
"[02:24:18\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Acceleration loop, direction 0 done.\n",
"[02:24:18\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Kick loop, direction 0...\n",
"[02:24:18\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Kick loop, direction 0 done.\n",
"[02:24:18\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Acceleration loop, direction 1...\n",
"[02:24:18\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Acceleration loop, direction 1 done.\n",
"[02:24:18\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Kick loop, direction 1...\n",
"[02:24:18\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Kick loop, direction 1 done.\n",
"[02:24:18\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Acceleration loop, direction 2...\n",
"[02:24:18\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Acceleration loop, direction 2 done.\n",
"[02:24:18\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Kick loop, direction 2...\n",
"[02:24:18\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Kick loop, direction 2 done.\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08bbb180 for g_pad in \u001b[38;5;227mpmcola.c\u001b[0;36m:\u001b[38;5;192mkick_pm_cola\u001b[0;36m:\u001b[0;32m592\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08cbb190 for pp in \u001b[38;5;227mpmcola.c\u001b[0;36m:\u001b[38;5;192mkick_pm_cola\u001b[0;36m:\u001b[0;32m598\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]====|Kicking particles (using 32 cores) done.\n",
"[02:24:18\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]====|Drifting particles (using 32 cores)...\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mndrift=4\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mnkick=4\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246maiDrift=0.240000\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246maKick=0.263750\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mafDrift=0.287500\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246malpha_p=0.619522\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246malpha_lpt_1=0.000000\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246malpha_lpt_2=0.000000\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246malpha_ext=0.000000\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Drift loop, direction 0...\n",
"[02:24:18\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Drift loop, direction 0 done.\n",
"[02:24:18\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Drift loop, direction 1...\n",
"[02:24:18\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Drift loop, direction 1 done.\n",
"[02:24:18\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Drift loop, direction 2...\n",
"[02:24:18\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Drift loop, direction 2 done.\n",
"[02:24:18\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]====|Drifting particles (using 32 cores) done.\n",
"[02:24:18\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]==|ModuleP3M: End sPM step 5/20, time_kick:0.263750, time_drift=0.287500.\n",
"[02:24:18\u001b[00m|\u001b[38;5;159mTIMER \u001b[00m]==|Step 5/20: Density: 0.349 CPU - 0.010 wallclock seconds used.\n",
"[02:24:18\u001b[00m|\u001b[38;5;159mTIMER \u001b[00m]==|Step 5/20: Potential: 0.608 CPU - 0.021 wallclock seconds used.\n",
"[02:24:18\u001b[00m|\u001b[38;5;159mTIMER \u001b[00m]==|Step 5/20: Accelerations (long-range): 0.095 CPU - 0.004 wallclock seconds used.\n",
"[02:24:18\u001b[00m|\u001b[38;5;159mTIMER \u001b[00m]==|Step 5/20: Accelerations (short-range): 0.000 CPU - 0.000 wallclock seconds used.\n",
"[02:24:18\u001b[00m|\u001b[38;5;159mTIMER \u001b[00m]==|Step 5/20: Kick: 0.032 CPU - 0.001 wallclock seconds used.\n",
"[02:24:18\u001b[00m|\u001b[38;5;159mTIMER \u001b[00m]==|Step 5/20: Drift: 0.000 CPU - 0.000 wallclock seconds used.\n",
"[02:24:18\u001b[00m|\u001b[38;5;159mTIMER \u001b[00m]==|Step 5/20: Inputs: 0.000 CPU - 0.000 wallclock seconds used.\n",
"[02:24:18\u001b[00m|\u001b[38;5;159mTIMER \u001b[00m]==|Step 5/20: Diagnostic: 0.000 CPU - 0.000 wallclock seconds used.\n",
"[02:24:18\u001b[00m|\u001b[38;5;159mTIMER \u001b[00m]==|Step 5/20: Outputs: 0.000 CPU - 0.000 wallclock seconds used.\n",
"[02:24:18\u001b[00m|\u001b[38;5;159mTIMER \u001b[00m]==|Step 5/20: Total Evolution: 1.084 CPU - 0.036 wallclock seconds used.\n",
"[02:24:18\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]==|ModuleP3M: Begin sPM step 6/20, time_kick:0.263750, time_drift=0.287500.\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]====|\u001b[38;5;246mGiven the available memory, 4095 threads could be allocated and 32 threads will be used in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel\u001b[0;36m:\u001b[0;32m347\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]====|\u001b[38;5;246mGiven the available memory, 4095 threads could be allocated and 32 threads will be used in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m73\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]====|Getting density contrast (using 32 cores and 32 arrays, parallel routine 1)...\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]======|\u001b[38;5;246mPerforming CiC binning...\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 0...\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148950000b60 for threadedDensity[9] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 9...\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1488e8000b60 for threadedDensity[2] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1488f0000b60 for threadedDensity[24] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1488d0000b60 for threadedDensity[5] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 24...\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 5...\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148990000b60 for threadedDensity[21] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 21...\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1489a0000b60 for threadedDensity[3] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148988000b60 for threadedDensity[28] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148980000b60 for threadedDensity[11] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 28...\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 11...\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 3...\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1488f8000b60 for threadedDensity[19] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148970000b60 for threadedDensity[7] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 19...\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 7...\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148928000b60 for threadedDensity[20] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 2...\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 20...\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1489b0000b60 for threadedDensity[1] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1489a8000b60 for threadedDensity[30] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 1...\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 30...\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1488dc000b60 for threadedDensity[17] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148978000b60 for threadedDensity[26] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 17...\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 26...\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148900000b60 for threadedDensity[16] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 16...\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148948000b60 for threadedDensity[31] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148940000b60 for threadedDensity[27] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1489b8000b60 for threadedDensity[4] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 4...\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 27...\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148908000b60 for threadedDensity[8] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148910000b60 for threadedDensity[23] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 8...\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 23...\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 31...\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148930000b60 for threadedDensity[14] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148938000b60 for threadedDensity[18] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 18...\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 14...\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1488d8000b60 for threadedDensity[29] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1488e0000b60 for threadedDensity[6] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 29...\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 6...\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148968000b60 for threadedDensity[10] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148918000b60 for threadedDensity[15] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 10...\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 15...\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148958000b60 for threadedDensity[22] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148960000b60 for threadedDensity[13] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 22...\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 13...\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148998000b60 for threadedDensity[25] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148920000b60 for threadedDensity[12] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 25...\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 12...\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 12 done.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 25 done.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 24 done.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 5 done.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 21 done.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 3 done.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 28 done.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 11 done.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 0 done.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 9 done.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 19 done.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 7 done.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 1 done.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 30 done.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 26 done.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 17 done.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 2 done.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 20 done.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 4 done.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 27 done.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 23 done.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 8 done.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 31 done.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 16 done.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 29 done.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 6 done.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 15 done.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 10 done.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 13 done.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 22 done.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 14 done.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 18 done.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]======|\u001b[38;5;246mPerforming CiC done.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]======|\u001b[38;5;246mPerforming CiC reduction...\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x1489b0000b60 for threadedDensity[1] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x1488e8000b60 for threadedDensity[2] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x1489a0000b60 for threadedDensity[3] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x1489b8000b60 for threadedDensity[4] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x1488d0000b60 for threadedDensity[5] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x1488e0000b60 for threadedDensity[6] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148970000b60 for threadedDensity[7] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148908000b60 for threadedDensity[8] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148950000b60 for threadedDensity[9] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148968000b60 for threadedDensity[10] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148980000b60 for threadedDensity[11] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148920000b60 for threadedDensity[12] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148960000b60 for threadedDensity[13] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148930000b60 for threadedDensity[14] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148918000b60 for threadedDensity[15] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148900000b60 for threadedDensity[16] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x1488dc000b60 for threadedDensity[17] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148938000b60 for threadedDensity[18] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x1488f8000b60 for threadedDensity[19] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148928000b60 for threadedDensity[20] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148990000b60 for threadedDensity[21] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148958000b60 for threadedDensity[22] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148910000b60 for threadedDensity[23] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x1488f0000b60 for threadedDensity[24] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148998000b60 for threadedDensity[25] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148978000b60 for threadedDensity[26] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148940000b60 for threadedDensity[27] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148988000b60 for threadedDensity[28] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x1488d8000b60 for threadedDensity[29] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x1489a8000b60 for threadedDensity[30] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148948000b60 for threadedDensity[31] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]======|\u001b[38;5;246mPerforming CiC reduction done.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]====|Getting density contrast (using 32 cores and 32 arrays, parallel routine 1) done.\n",
"[02:24:18\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]====|Getting gravitational potential, periodic boundary conditions (using 32 cores)...\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated memory (1081344 bytes) at 0x55cb08bbb180 for AUX in \u001b[38;5;227mpoisson_solvers.c\u001b[0;36m:\u001b[38;5;192msolve_poisson_DFT\u001b[0;36m:\u001b[0;32m106\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08bbb180 for AUX in \u001b[38;5;227mpoisson_solvers.c\u001b[0;36m:\u001b[38;5;192msolve_poisson_DFT\u001b[0;36m:\u001b[0;32m116\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]====|Getting gravitational potential, periodic boundary conditions (using 32 cores) done.\n",
"[02:24:18\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]====|Kicking particles (using 32 cores)...\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mnkick=5\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mndrift=5\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246maiKick=0.263750\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246maDrift=0.287500\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mafKick=0.311250\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mbeta_delta=-0.072297\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mbeta_lpt_1=0.000000\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mbeta_lpt_2=0.000000\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mbeta_ext=0.000000\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated memory (1048576 bytes) at 0x55cb08bbb180 for g_pad in \u001b[38;5;227mpmcola.c\u001b[0;36m:\u001b[38;5;192mkick_pm_cola\u001b[0;36m:\u001b[0;32m478\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated memory (393216 bytes) at 0x55cb08cbb190 for pp in \u001b[38;5;227mpmcola.c\u001b[0;36m:\u001b[38;5;192mkick_pm_cola\u001b[0;36m:\u001b[0;32m554\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Acceleration loop, direction 0...\n",
"[02:24:18\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Acceleration loop, direction 0 done.\n",
"[02:24:18\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Kick loop, direction 0...\n",
"[02:24:18\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Kick loop, direction 0 done.\n",
"[02:24:18\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Acceleration loop, direction 1...\n",
"[02:24:18\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Acceleration loop, direction 1 done.\n",
"[02:24:18\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Kick loop, direction 1...\n",
"[02:24:18\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Kick loop, direction 1 done.\n",
"[02:24:18\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Acceleration loop, direction 2...\n",
"[02:24:18\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Acceleration loop, direction 2 done.\n",
"[02:24:18\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Kick loop, direction 2...\n",
"[02:24:18\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Kick loop, direction 2 done.\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08bbb180 for g_pad in \u001b[38;5;227mpmcola.c\u001b[0;36m:\u001b[38;5;192mkick_pm_cola\u001b[0;36m:\u001b[0;32m592\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08cbb190 for pp in \u001b[38;5;227mpmcola.c\u001b[0;36m:\u001b[38;5;192mkick_pm_cola\u001b[0;36m:\u001b[0;32m598\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]====|Kicking particles (using 32 cores) done.\n",
"[02:24:18\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]====|Drifting particles (using 32 cores)...\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mndrift=5\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mnkick=5\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246maiDrift=0.287500\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246maKick=0.311250\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mafDrift=0.335000\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246malpha_p=0.476628\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246malpha_lpt_1=0.000000\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246malpha_lpt_2=0.000000\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246malpha_ext=0.000000\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Drift loop, direction 0...\n",
"[02:24:18\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Drift loop, direction 0 done.\n",
"[02:24:18\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Drift loop, direction 1...\n",
"[02:24:18\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Drift loop, direction 1 done.\n",
"[02:24:18\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Drift loop, direction 2...\n",
"[02:24:18\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Drift loop, direction 2 done.\n",
"[02:24:18\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]====|Drifting particles (using 32 cores) done.\n",
"[02:24:18\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]==|ModuleP3M: End sPM step 6/20, time_kick:0.311250, time_drift=0.335000.\n",
"[02:24:18\u001b[00m|\u001b[38;5;159mTIMER \u001b[00m]==|Step 6/20: Density: 0.317 CPU - 0.010 wallclock seconds used.\n",
"[02:24:18\u001b[00m|\u001b[38;5;159mTIMER \u001b[00m]==|Step 6/20: Potential: 0.576 CPU - 0.020 wallclock seconds used.\n",
"[02:24:18\u001b[00m|\u001b[38;5;159mTIMER \u001b[00m]==|Step 6/20: Accelerations (long-range): 0.084 CPU - 0.004 wallclock seconds used.\n",
"[02:24:18\u001b[00m|\u001b[38;5;159mTIMER \u001b[00m]==|Step 6/20: Accelerations (short-range): 0.000 CPU - 0.000 wallclock seconds used.\n",
"[02:24:18\u001b[00m|\u001b[38;5;159mTIMER \u001b[00m]==|Step 6/20: Kick: 0.063 CPU - 0.001 wallclock seconds used.\n",
"[02:24:18\u001b[00m|\u001b[38;5;159mTIMER \u001b[00m]==|Step 6/20: Drift: 0.000 CPU - 0.000 wallclock seconds used.\n",
"[02:24:18\u001b[00m|\u001b[38;5;159mTIMER \u001b[00m]==|Step 6/20: Inputs: 0.000 CPU - 0.000 wallclock seconds used.\n",
"[02:24:18\u001b[00m|\u001b[38;5;159mTIMER \u001b[00m]==|Step 6/20: Diagnostic: 0.000 CPU - 0.000 wallclock seconds used.\n",
"[02:24:18\u001b[00m|\u001b[38;5;159mTIMER \u001b[00m]==|Step 6/20: Outputs: 0.000 CPU - 0.000 wallclock seconds used.\n",
"[02:24:18\u001b[00m|\u001b[38;5;159mTIMER \u001b[00m]==|Step 6/20: Total Evolution: 1.041 CPU - 0.035 wallclock seconds used.\n",
"[02:24:18\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]==|ModuleP3M: Begin sPM step 7/20, time_kick:0.311250, time_drift=0.335000.\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]====|\u001b[38;5;246mGiven the available memory, 4095 threads could be allocated and 32 threads will be used in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel\u001b[0;36m:\u001b[0;32m347\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]====|\u001b[38;5;246mGiven the available memory, 4095 threads could be allocated and 32 threads will be used in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m73\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]====|Getting density contrast (using 32 cores and 32 arrays, parallel routine 1)...\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]======|\u001b[38;5;246mPerforming CiC binning...\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 0...\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1488e8000b60 for threadedDensity[2] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148950000b60 for threadedDensity[9] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 9...\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1489a0000b60 for threadedDensity[3] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 3...\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148990000b60 for threadedDensity[21] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1488f0000b60 for threadedDensity[24] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1488d0000b60 for threadedDensity[5] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 24...\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 5...\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 21...\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148988000b60 for threadedDensity[28] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 28...\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148980000b60 for threadedDensity[11] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148970000b60 for threadedDensity[7] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1488f8000b60 for threadedDensity[19] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 7...\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 19...\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 11...\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1489a8000b60 for threadedDensity[30] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1488dc000b60 for threadedDensity[17] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148978000b60 for threadedDensity[26] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 17...\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 26...\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 30...\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148928000b60 for threadedDensity[20] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 2...\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 20...\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148940000b60 for threadedDensity[27] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1489b8000b60 for threadedDensity[4] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 27...\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 4...\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148948000b60 for threadedDensity[31] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148900000b60 for threadedDensity[16] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 31...\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 16...\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1489b0000b60 for threadedDensity[1] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148918000b60 for threadedDensity[15] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148968000b60 for threadedDensity[10] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 15...\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 10...\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 1...\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1488d8000b60 for threadedDensity[29] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 29...\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1488e0000b60 for threadedDensity[6] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148958000b60 for threadedDensity[22] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148960000b60 for threadedDensity[13] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 13...\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 22...\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 6...\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148910000b60 for threadedDensity[23] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148908000b60 for threadedDensity[8] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 23...\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 8...\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148930000b60 for threadedDensity[14] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148938000b60 for threadedDensity[18] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 14...\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 18...\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148920000b60 for threadedDensity[12] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148998000b60 for threadedDensity[25] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 12...\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 25...\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 25 done.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 12 done.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 21 done.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 3 done.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 24 done.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 5 done.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 0 done.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 9 done.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 11 done.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 28 done.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 7 done.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 19 done.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 1 done.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 30 done.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 26 done.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 17 done.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 20 done.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 2 done.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 13 done.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 16 done.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 31 done.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 23 done.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 8 done.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 27 done.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 4 done.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 15 done.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 10 done.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 6 done.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 29 done.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 22 done.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 14 done.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 18 done.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]======|\u001b[38;5;246mPerforming CiC done.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]======|\u001b[38;5;246mPerforming CiC reduction...\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x1489b0000b60 for threadedDensity[1] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x1488e8000b60 for threadedDensity[2] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x1489a0000b60 for threadedDensity[3] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x1489b8000b60 for threadedDensity[4] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x1488d0000b60 for threadedDensity[5] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x1488e0000b60 for threadedDensity[6] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148970000b60 for threadedDensity[7] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148908000b60 for threadedDensity[8] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148950000b60 for threadedDensity[9] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148968000b60 for threadedDensity[10] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148980000b60 for threadedDensity[11] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148920000b60 for threadedDensity[12] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148960000b60 for threadedDensity[13] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148930000b60 for threadedDensity[14] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148918000b60 for threadedDensity[15] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148900000b60 for threadedDensity[16] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x1488dc000b60 for threadedDensity[17] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148938000b60 for threadedDensity[18] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x1488f8000b60 for threadedDensity[19] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148928000b60 for threadedDensity[20] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148990000b60 for threadedDensity[21] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148958000b60 for threadedDensity[22] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148910000b60 for threadedDensity[23] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x1488f0000b60 for threadedDensity[24] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148998000b60 for threadedDensity[25] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148978000b60 for threadedDensity[26] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148940000b60 for threadedDensity[27] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148988000b60 for threadedDensity[28] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x1488d8000b60 for threadedDensity[29] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x1489a8000b60 for threadedDensity[30] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148948000b60 for threadedDensity[31] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]======|\u001b[38;5;246mPerforming CiC reduction done.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]====|Getting density contrast (using 32 cores and 32 arrays, parallel routine 1) done.\n",
"[02:24:18\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]====|Getting gravitational potential, periodic boundary conditions (using 32 cores)...\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated memory (1081344 bytes) at 0x55cb08bbb180 for AUX in \u001b[38;5;227mpoisson_solvers.c\u001b[0;36m:\u001b[38;5;192msolve_poisson_DFT\u001b[0;36m:\u001b[0;32m106\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08bbb180 for AUX in \u001b[38;5;227mpoisson_solvers.c\u001b[0;36m:\u001b[38;5;192msolve_poisson_DFT\u001b[0;36m:\u001b[0;32m116\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]====|Getting gravitational potential, periodic boundary conditions (using 32 cores) done.\n",
"[02:24:18\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]====|Kicking particles (using 32 cores)...\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mnkick=6\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mndrift=6\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246maiKick=0.311250\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246maDrift=0.335000\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mafKick=0.358750\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mbeta_delta=-0.066008\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mbeta_lpt_1=0.000000\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mbeta_lpt_2=0.000000\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mbeta_ext=0.000000\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated memory (1048576 bytes) at 0x55cb08bbb180 for g_pad in \u001b[38;5;227mpmcola.c\u001b[0;36m:\u001b[38;5;192mkick_pm_cola\u001b[0;36m:\u001b[0;32m478\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated memory (393216 bytes) at 0x55cb08cbb190 for pp in \u001b[38;5;227mpmcola.c\u001b[0;36m:\u001b[38;5;192mkick_pm_cola\u001b[0;36m:\u001b[0;32m554\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Acceleration loop, direction 0...\n",
"[02:24:18\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Acceleration loop, direction 0 done.\n",
"[02:24:18\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Kick loop, direction 0...\n",
"[02:24:18\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Kick loop, direction 0 done.\n",
"[02:24:18\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Acceleration loop, direction 1...\n",
"[02:24:18\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Acceleration loop, direction 1 done.\n",
"[02:24:18\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Kick loop, direction 1...\n",
"[02:24:18\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Kick loop, direction 1 done.\n",
"[02:24:18\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Acceleration loop, direction 2...\n",
"[02:24:18\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Acceleration loop, direction 2 done.\n",
"[02:24:18\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Kick loop, direction 2...\n",
"[02:24:18\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Kick loop, direction 2 done.\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08bbb180 for g_pad in \u001b[38;5;227mpmcola.c\u001b[0;36m:\u001b[38;5;192mkick_pm_cola\u001b[0;36m:\u001b[0;32m592\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08cbb190 for pp in \u001b[38;5;227mpmcola.c\u001b[0;36m:\u001b[38;5;192mkick_pm_cola\u001b[0;36m:\u001b[0;32m598\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]====|Kicking particles (using 32 cores) done.\n",
"[02:24:18\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]====|Drifting particles (using 32 cores)...\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mndrift=6\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mnkick=6\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246maiDrift=0.335000\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246maKick=0.358750\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mafDrift=0.382500\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246malpha_p=0.378592\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246malpha_lpt_1=0.000000\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246malpha_lpt_2=0.000000\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246malpha_ext=0.000000\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Drift loop, direction 0...\n",
"[02:24:18\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Drift loop, direction 0 done.\n",
"[02:24:18\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Drift loop, direction 1...\n",
"[02:24:18\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Drift loop, direction 1 done.\n",
"[02:24:18\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Drift loop, direction 2...\n",
"[02:24:18\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Drift loop, direction 2 done.\n",
"[02:24:18\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]====|Drifting particles (using 32 cores) done.\n",
"[02:24:18\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]==|ModuleP3M: End sPM step 7/20, time_kick:0.358750, time_drift=0.382500.\n",
"[02:24:18\u001b[00m|\u001b[38;5;159mTIMER \u001b[00m]==|Step 7/20: Density: 0.348 CPU - 0.011 wallclock seconds used.\n",
"[02:24:18\u001b[00m|\u001b[38;5;159mTIMER \u001b[00m]==|Step 7/20: Potential: 0.806 CPU - 0.028 wallclock seconds used.\n",
"[02:24:18\u001b[00m|\u001b[38;5;159mTIMER \u001b[00m]==|Step 7/20: Accelerations (long-range): 1.248 CPU - 0.044 wallclock seconds used.\n",
"[02:24:18\u001b[00m|\u001b[38;5;159mTIMER \u001b[00m]==|Step 7/20: Accelerations (short-range): 0.369 CPU - 0.012 wallclock seconds used.\n",
"[02:24:18\u001b[00m|\u001b[38;5;159mTIMER \u001b[00m]==|Step 7/20: Kick: 1.158 CPU - 0.039 wallclock seconds used.\n",
"[02:24:18\u001b[00m|\u001b[38;5;159mTIMER \u001b[00m]==|Step 7/20: Drift: 2.091 CPU - 0.069 wallclock seconds used.\n",
"[02:24:18\u001b[00m|\u001b[38;5;159mTIMER \u001b[00m]==|Step 7/20: Inputs: 0.000 CPU - 0.000 wallclock seconds used.\n",
"[02:24:18\u001b[00m|\u001b[38;5;159mTIMER \u001b[00m]==|Step 7/20: Diagnostic: 0.000 CPU - 0.000 wallclock seconds used.\n",
"[02:24:18\u001b[00m|\u001b[38;5;159mTIMER \u001b[00m]==|Step 7/20: Outputs: 0.000 CPU - 0.000 wallclock seconds used.\n",
"[02:24:18\u001b[00m|\u001b[38;5;159mTIMER \u001b[00m]==|Step 7/20: Total Evolution: 6.020 CPU - 0.202 wallclock seconds used.\n",
"[02:24:18\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]==|ModuleP3M: Begin sPM step 8/20, time_kick:0.358750, time_drift=0.382500.\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]====|\u001b[38;5;246mGiven the available memory, 4095 threads could be allocated and 32 threads will be used in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel\u001b[0;36m:\u001b[0;32m347\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]====|\u001b[38;5;246mGiven the available memory, 4095 threads could be allocated and 32 threads will be used in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m73\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]====|Getting density contrast (using 32 cores and 32 arrays, parallel routine 1)...\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]======|\u001b[38;5;246mPerforming CiC binning...\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 0...\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1489b8000b60 for threadedDensity[4] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148940000b60 for threadedDensity[27] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 4...\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 27...\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1488f8000b60 for threadedDensity[19] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 19...\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148970000b60 for threadedDensity[7] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1488e0000b60 for threadedDensity[6] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1488d8000b60 for threadedDensity[29] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 6...\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 29...\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148948000b60 for threadedDensity[31] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148900000b60 for threadedDensity[16] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 31...\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 16...\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148960000b60 for threadedDensity[13] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148958000b60 for threadedDensity[22] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 13...\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 22...\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148998000b60 for threadedDensity[25] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148920000b60 for threadedDensity[12] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 25...\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 12...\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148938000b60 for threadedDensity[18] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148930000b60 for threadedDensity[14] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 18...\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 14...\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148968000b60 for threadedDensity[10] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148918000b60 for threadedDensity[15] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 10...\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 15...\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148908000b60 for threadedDensity[8] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148910000b60 for threadedDensity[23] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 8...\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 23...\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148950000b60 for threadedDensity[9] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148980000b60 for threadedDensity[11] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 9...\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 11...\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148928000b60 for threadedDensity[20] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1488e8000b60 for threadedDensity[2] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 20...\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 2...\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148978000b60 for threadedDensity[26] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1488dc000b60 for threadedDensity[17] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 26...\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 17...\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148990000b60 for threadedDensity[21] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1489a0000b60 for threadedDensity[3] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 21...\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 3...\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1489b0000b60 for threadedDensity[1] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1489a8000b60 for threadedDensity[30] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 1...\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 30...\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1488f0000b60 for threadedDensity[24] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1488d0000b60 for threadedDensity[5] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 24...\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 5...\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 7...\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148988000b60 for threadedDensity[28] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 28...\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 17 done.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 26 done.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 13 done.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 22 done.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 29 done.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 6 done.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 31 done.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 16 done.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 4 done.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 27 done.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 14 done.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 18 done.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 12 done.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 25 done.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 23 done.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 8 done.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 10 done.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 15 done.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 9 done.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 24 done.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 5 done.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 28 done.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 0 done.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 21 done.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 3 done.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 20 done.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 2 done.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 19 done.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 7 done.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 30 done.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 1 done.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 11 done.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]======|\u001b[38;5;246mPerforming CiC done.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]======|\u001b[38;5;246mPerforming CiC reduction...\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x1489b0000b60 for threadedDensity[1] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x1488e8000b60 for threadedDensity[2] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x1489a0000b60 for threadedDensity[3] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x1489b8000b60 for threadedDensity[4] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x1488d0000b60 for threadedDensity[5] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x1488e0000b60 for threadedDensity[6] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148970000b60 for threadedDensity[7] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148908000b60 for threadedDensity[8] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148950000b60 for threadedDensity[9] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148968000b60 for threadedDensity[10] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148980000b60 for threadedDensity[11] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148920000b60 for threadedDensity[12] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148960000b60 for threadedDensity[13] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148930000b60 for threadedDensity[14] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148918000b60 for threadedDensity[15] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148900000b60 for threadedDensity[16] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x1488dc000b60 for threadedDensity[17] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148938000b60 for threadedDensity[18] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x1488f8000b60 for threadedDensity[19] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148928000b60 for threadedDensity[20] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148990000b60 for threadedDensity[21] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148958000b60 for threadedDensity[22] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148910000b60 for threadedDensity[23] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x1488f0000b60 for threadedDensity[24] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148998000b60 for threadedDensity[25] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148978000b60 for threadedDensity[26] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148940000b60 for threadedDensity[27] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148988000b60 for threadedDensity[28] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x1488d8000b60 for threadedDensity[29] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x1489a8000b60 for threadedDensity[30] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148948000b60 for threadedDensity[31] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]======|\u001b[38;5;246mPerforming CiC reduction done.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]====|Getting density contrast (using 32 cores and 32 arrays, parallel routine 1) done.\n",
"[02:24:18\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]====|Getting gravitational potential, periodic boundary conditions (using 32 cores)...\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated memory (1081344 bytes) at 0x55cb08bbb180 for AUX in \u001b[38;5;227mpoisson_solvers.c\u001b[0;36m:\u001b[38;5;192msolve_poisson_DFT\u001b[0;36m:\u001b[0;32m106\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08bbb180 for AUX in \u001b[38;5;227mpoisson_solvers.c\u001b[0;36m:\u001b[38;5;192msolve_poisson_DFT\u001b[0;36m:\u001b[0;32m116\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]====|Getting gravitational potential, periodic boundary conditions (using 32 cores) done.\n",
"[02:24:18\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]====|Kicking particles (using 32 cores)...\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mnkick=7\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mndrift=7\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246maiKick=0.358750\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246maDrift=0.382500\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mafKick=0.406250\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mbeta_delta=-0.060637\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mbeta_lpt_1=0.000000\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mbeta_lpt_2=0.000000\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mbeta_ext=0.000000\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated memory (1048576 bytes) at 0x55cb08bbb180 for g_pad in \u001b[38;5;227mpmcola.c\u001b[0;36m:\u001b[38;5;192mkick_pm_cola\u001b[0;36m:\u001b[0;32m478\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated memory (393216 bytes) at 0x55cb08cbb190 for pp in \u001b[38;5;227mpmcola.c\u001b[0;36m:\u001b[38;5;192mkick_pm_cola\u001b[0;36m:\u001b[0;32m554\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Acceleration loop, direction 0...\n",
"[02:24:18\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Acceleration loop, direction 0 done.\n",
"[02:24:18\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Kick loop, direction 0...\n",
"[02:24:18\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Kick loop, direction 0 done.\n",
"[02:24:18\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Acceleration loop, direction 1...\n",
"[02:24:18\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Acceleration loop, direction 1 done.\n",
"[02:24:18\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Kick loop, direction 1...\n",
"[02:24:18\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Kick loop, direction 1 done.\n",
"[02:24:18\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Acceleration loop, direction 2...\n",
"[02:24:18\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Acceleration loop, direction 2 done.\n",
"[02:24:18\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Kick loop, direction 2...\n",
"[02:24:18\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Kick loop, direction 2 done.\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08bbb180 for g_pad in \u001b[38;5;227mpmcola.c\u001b[0;36m:\u001b[38;5;192mkick_pm_cola\u001b[0;36m:\u001b[0;32m592\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08cbb190 for pp in \u001b[38;5;227mpmcola.c\u001b[0;36m:\u001b[38;5;192mkick_pm_cola\u001b[0;36m:\u001b[0;32m598\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]====|Kicking particles (using 32 cores) done.\n",
"[02:24:18\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]====|Drifting particles (using 32 cores)...\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mndrift=7\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mnkick=7\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246maiDrift=0.382500\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246maKick=0.406250\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mafDrift=0.430000\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246malpha_p=0.307609\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246malpha_lpt_1=0.000000\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246malpha_lpt_2=0.000000\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246malpha_ext=0.000000\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Drift loop, direction 0...\n",
"[02:24:18\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Drift loop, direction 0 done.\n",
"[02:24:18\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Drift loop, direction 1...\n",
"[02:24:18\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Drift loop, direction 1 done.\n",
"[02:24:18\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Drift loop, direction 2...\n",
"[02:24:18\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Drift loop, direction 2 done.\n",
"[02:24:18\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]====|Drifting particles (using 32 cores) done.\n",
"[02:24:18\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]==|ModuleP3M: End sPM step 8/20, time_kick:0.406250, time_drift=0.430000.\n",
"[02:24:18\u001b[00m|\u001b[38;5;159mTIMER \u001b[00m]==|Step 8/20: Density: 5.745 CPU - 0.189 wallclock seconds used.\n",
"[02:24:18\u001b[00m|\u001b[38;5;159mTIMER \u001b[00m]==|Step 8/20: Potential: 0.441 CPU - 0.015 wallclock seconds used.\n",
"[02:24:18\u001b[00m|\u001b[38;5;159mTIMER \u001b[00m]==|Step 8/20: Accelerations (long-range): 0.083 CPU - 0.004 wallclock seconds used.\n",
"[02:24:18\u001b[00m|\u001b[38;5;159mTIMER \u001b[00m]==|Step 8/20: Accelerations (short-range): 0.000 CPU - 0.000 wallclock seconds used.\n",
"[02:24:18\u001b[00m|\u001b[38;5;159mTIMER \u001b[00m]==|Step 8/20: Kick: 0.063 CPU - 0.001 wallclock seconds used.\n",
"[02:24:18\u001b[00m|\u001b[38;5;159mTIMER \u001b[00m]==|Step 8/20: Drift: 0.000 CPU - 0.000 wallclock seconds used.\n",
"[02:24:18\u001b[00m|\u001b[38;5;159mTIMER \u001b[00m]==|Step 8/20: Inputs: 0.000 CPU - 0.000 wallclock seconds used.\n",
"[02:24:18\u001b[00m|\u001b[38;5;159mTIMER \u001b[00m]==|Step 8/20: Diagnostic: 0.000 CPU - 0.000 wallclock seconds used.\n",
"[02:24:18\u001b[00m|\u001b[38;5;159mTIMER \u001b[00m]==|Step 8/20: Outputs: 0.000 CPU - 0.000 wallclock seconds used.\n",
"[02:24:18\u001b[00m|\u001b[38;5;159mTIMER \u001b[00m]==|Step 8/20: Total Evolution: 6.332 CPU - 0.209 wallclock seconds used.\n",
"[02:24:18\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]==|ModuleP3M: Begin sPM step 9/20, time_kick:0.406250, time_drift=0.430000.\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]====|\u001b[38;5;246mGiven the available memory, 4095 threads could be allocated and 32 threads will be used in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel\u001b[0;36m:\u001b[0;32m347\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]====|\u001b[38;5;246mGiven the available memory, 4095 threads could be allocated and 32 threads will be used in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m73\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]====|Getting density contrast (using 32 cores and 32 arrays, parallel routine 1)...\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]======|\u001b[38;5;246mPerforming CiC binning...\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 0...\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1488f8000b60 for threadedDensity[19] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 19...\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148970000b60 for threadedDensity[7] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1488e0000b60 for threadedDensity[6] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1488d8000b60 for threadedDensity[29] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 6...\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 29...\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148958000b60 for threadedDensity[22] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148960000b60 for threadedDensity[13] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 22...\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 13...\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148940000b60 for threadedDensity[27] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1489b8000b60 for threadedDensity[4] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 27...\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 4...\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148900000b60 for threadedDensity[16] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148948000b60 for threadedDensity[31] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 16...\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 31...\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148998000b60 for threadedDensity[25] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148920000b60 for threadedDensity[12] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 25...\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 12...\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148930000b60 for threadedDensity[14] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148938000b60 for threadedDensity[18] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 14...\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 18...\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148918000b60 for threadedDensity[15] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148968000b60 for threadedDensity[10] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 15...\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 10...\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148908000b60 for threadedDensity[8] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148910000b60 for threadedDensity[23] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 8...\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 23...\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148988000b60 for threadedDensity[28] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148980000b60 for threadedDensity[11] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 28...\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 11...\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148950000b60 for threadedDensity[9] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148928000b60 for threadedDensity[20] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1488dc000b60 for threadedDensity[17] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148978000b60 for threadedDensity[26] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 17...\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 26...\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 20...\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 9...\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1488f0000b60 for threadedDensity[24] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1488d0000b60 for threadedDensity[5] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 24...\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 5...\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1489a0000b60 for threadedDensity[3] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148990000b60 for threadedDensity[21] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 3...\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 21...\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 7...\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1489a8000b60 for threadedDensity[30] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 30...\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1488e8000b60 for threadedDensity[2] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 2...\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1489b0000b60 for threadedDensity[1] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 1...\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 20 done.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 2 done.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 29 done.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 6 done.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 13 done.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 22 done.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 27 done.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 4 done.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 16 done.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 31 done.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 25 done.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 12 done.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 14 done.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 18 done.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 10 done.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 15 done.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 23 done.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 8 done.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 9 done.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 0 done.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 28 done.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 11 done.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 5 done.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 24 done.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 17 done.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 26 done.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 3 done.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 21 done.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 19 done.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 7 done.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 1 done.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 30 done.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]======|\u001b[38;5;246mPerforming CiC done.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]======|\u001b[38;5;246mPerforming CiC reduction...\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x1489b0000b60 for threadedDensity[1] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x1488e8000b60 for threadedDensity[2] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x1489a0000b60 for threadedDensity[3] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x1489b8000b60 for threadedDensity[4] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x1488d0000b60 for threadedDensity[5] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x1488e0000b60 for threadedDensity[6] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148970000b60 for threadedDensity[7] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148908000b60 for threadedDensity[8] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148950000b60 for threadedDensity[9] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148968000b60 for threadedDensity[10] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148980000b60 for threadedDensity[11] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148920000b60 for threadedDensity[12] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148960000b60 for threadedDensity[13] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148930000b60 for threadedDensity[14] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148918000b60 for threadedDensity[15] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148900000b60 for threadedDensity[16] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x1488dc000b60 for threadedDensity[17] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148938000b60 for threadedDensity[18] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x1488f8000b60 for threadedDensity[19] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148928000b60 for threadedDensity[20] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148990000b60 for threadedDensity[21] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148958000b60 for threadedDensity[22] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148910000b60 for threadedDensity[23] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x1488f0000b60 for threadedDensity[24] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148998000b60 for threadedDensity[25] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148978000b60 for threadedDensity[26] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148940000b60 for threadedDensity[27] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148988000b60 for threadedDensity[28] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x1488d8000b60 for threadedDensity[29] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x1489a8000b60 for threadedDensity[30] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148948000b60 for threadedDensity[31] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]======|\u001b[38;5;246mPerforming CiC reduction done.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]====|Getting density contrast (using 32 cores and 32 arrays, parallel routine 1) done.\n",
"[02:24:18\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]====|Getting gravitational potential, periodic boundary conditions (using 32 cores)...\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated memory (1081344 bytes) at 0x55cb08bbb180 for AUX in \u001b[38;5;227mpoisson_solvers.c\u001b[0;36m:\u001b[38;5;192msolve_poisson_DFT\u001b[0;36m:\u001b[0;32m106\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08bbb180 for AUX in \u001b[38;5;227mpoisson_solvers.c\u001b[0;36m:\u001b[38;5;192msolve_poisson_DFT\u001b[0;36m:\u001b[0;32m116\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]====|Getting gravitational potential, periodic boundary conditions (using 32 cores) done.\n",
"[02:24:18\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]====|Kicking particles (using 32 cores)...\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mnkick=8\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mndrift=8\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246maiKick=0.406250\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246maDrift=0.430000\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mafKick=0.453750\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mbeta_delta=-0.055903\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mbeta_lpt_1=0.000000\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mbeta_lpt_2=0.000000\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mbeta_ext=0.000000\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated memory (1048576 bytes) at 0x55cb08bbb180 for g_pad in \u001b[38;5;227mpmcola.c\u001b[0;36m:\u001b[38;5;192mkick_pm_cola\u001b[0;36m:\u001b[0;32m478\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated memory (393216 bytes) at 0x55cb08cbb190 for pp in \u001b[38;5;227mpmcola.c\u001b[0;36m:\u001b[38;5;192mkick_pm_cola\u001b[0;36m:\u001b[0;32m554\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Acceleration loop, direction 0...\n",
"[02:24:18\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Acceleration loop, direction 0 done.\n",
"[02:24:18\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Kick loop, direction 0...\n",
"[02:24:18\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Kick loop, direction 0 done.\n",
"[02:24:18\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Acceleration loop, direction 1...\n",
"[02:24:18\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Acceleration loop, direction 1 done.\n",
"[02:24:18\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Kick loop, direction 1...\n",
"[02:24:18\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Kick loop, direction 1 done.\n",
"[02:24:18\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Acceleration loop, direction 2...\n",
"[02:24:18\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Acceleration loop, direction 2 done.\n",
"[02:24:18\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Kick loop, direction 2...\n",
"[02:24:18\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Kick loop, direction 2 done.\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08bbb180 for g_pad in \u001b[38;5;227mpmcola.c\u001b[0;36m:\u001b[38;5;192mkick_pm_cola\u001b[0;36m:\u001b[0;32m592\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08cbb190 for pp in \u001b[38;5;227mpmcola.c\u001b[0;36m:\u001b[38;5;192mkick_pm_cola\u001b[0;36m:\u001b[0;32m598\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]====|Kicking particles (using 32 cores) done.\n",
"[02:24:18\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]====|Drifting particles (using 32 cores)...\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mndrift=8\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mnkick=8\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246maiDrift=0.430000\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246maKick=0.453750\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mafDrift=0.477500\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246malpha_p=0.254110\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246malpha_lpt_1=0.000000\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246malpha_lpt_2=0.000000\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246malpha_ext=0.000000\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Drift loop, direction 0...\n",
"[02:24:18\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Drift loop, direction 0 done.\n",
"[02:24:18\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Drift loop, direction 1...\n",
"[02:24:18\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Drift loop, direction 1 done.\n",
"[02:24:18\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Drift loop, direction 2...\n",
"[02:24:18\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Drift loop, direction 2 done.\n",
"[02:24:18\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]====|Drifting particles (using 32 cores) done.\n",
"[02:24:18\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]==|ModuleP3M: End sPM step 9/20, time_kick:0.453750, time_drift=0.477500.\n",
"[02:24:18\u001b[00m|\u001b[38;5;159mTIMER \u001b[00m]==|Step 9/20: Density: 0.349 CPU - 0.011 wallclock seconds used.\n",
"[02:24:18\u001b[00m|\u001b[38;5;159mTIMER \u001b[00m]==|Step 9/20: Potential: 0.443 CPU - 0.016 wallclock seconds used.\n",
"[02:24:18\u001b[00m|\u001b[38;5;159mTIMER \u001b[00m]==|Step 9/20: Accelerations (long-range): 0.127 CPU - 0.004 wallclock seconds used.\n",
"[02:24:18\u001b[00m|\u001b[38;5;159mTIMER \u001b[00m]==|Step 9/20: Accelerations (short-range): 0.000 CPU - 0.000 wallclock seconds used.\n",
"[02:24:18\u001b[00m|\u001b[38;5;159mTIMER \u001b[00m]==|Step 9/20: Kick: 0.000 CPU - 0.001 wallclock seconds used.\n",
"[02:24:18\u001b[00m|\u001b[38;5;159mTIMER \u001b[00m]==|Step 9/20: Drift: 0.032 CPU - 0.000 wallclock seconds used.\n",
"[02:24:18\u001b[00m|\u001b[38;5;159mTIMER \u001b[00m]==|Step 9/20: Inputs: 0.000 CPU - 0.000 wallclock seconds used.\n",
"[02:24:18\u001b[00m|\u001b[38;5;159mTIMER \u001b[00m]==|Step 9/20: Diagnostic: 0.000 CPU - 0.000 wallclock seconds used.\n",
"[02:24:18\u001b[00m|\u001b[38;5;159mTIMER \u001b[00m]==|Step 9/20: Outputs: 0.000 CPU - 0.000 wallclock seconds used.\n",
"[02:24:18\u001b[00m|\u001b[38;5;159mTIMER \u001b[00m]==|Step 9/20: Total Evolution: 0.950 CPU - 0.031 wallclock seconds used.\n",
"[02:24:18\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]==|ModuleP3M: Begin sPM step 10/20, time_kick:0.453750, time_drift=0.477500.\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]====|\u001b[38;5;246mGiven the available memory, 4095 threads could be allocated and 32 threads will be used in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel\u001b[0;36m:\u001b[0;32m347\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]====|\u001b[38;5;246mGiven the available memory, 4095 threads could be allocated and 32 threads will be used in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m73\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]====|Getting density contrast (using 32 cores and 32 arrays, parallel routine 1)...\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]======|\u001b[38;5;246mPerforming CiC binning...\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 0...\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148950000b60 for threadedDensity[9] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 9...\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1488f8000b60 for threadedDensity[19] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148970000b60 for threadedDensity[7] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 19...\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 7...\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1488dc000b60 for threadedDensity[17] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148978000b60 for threadedDensity[26] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 17...\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 26...\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148960000b60 for threadedDensity[13] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148958000b60 for threadedDensity[22] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 13...\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 22...\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1488d8000b60 for threadedDensity[29] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1488e0000b60 for threadedDensity[6] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 29...\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 6...\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148940000b60 for threadedDensity[27] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1489b8000b60 for threadedDensity[4] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 27...\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 4...\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148900000b60 for threadedDensity[16] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 16...\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148948000b60 for threadedDensity[31] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148920000b60 for threadedDensity[12] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148998000b60 for threadedDensity[25] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 12...\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 25...\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 31...\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1488f0000b60 for threadedDensity[24] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1488d0000b60 for threadedDensity[5] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 24...\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 5...\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148938000b60 for threadedDensity[18] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148930000b60 for threadedDensity[14] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 18...\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 14...\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148918000b60 for threadedDensity[15] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148968000b60 for threadedDensity[10] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 15...\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 10...\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148910000b60 for threadedDensity[23] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148908000b60 for threadedDensity[8] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 23...\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 8...\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148988000b60 for threadedDensity[28] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 28...\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148980000b60 for threadedDensity[11] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1489a0000b60 for threadedDensity[3] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148990000b60 for threadedDensity[21] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 3...\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 21...\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148928000b60 for threadedDensity[20] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 11...\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 20...\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1489a8000b60 for threadedDensity[30] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 30...\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1489b0000b60 for threadedDensity[1] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 1...\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1488e8000b60 for threadedDensity[2] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 2...\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 2 done.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 20 done.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 22 done.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 13 done.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 29 done.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 6 done.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 16 done.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 31 done.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 27 done.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 4 done.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 25 done.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 12 done.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 14 done.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 18 done.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 23 done.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 8 done.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 15 done.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 10 done.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 11 done.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 28 done.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 9 done.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 0 done.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 5 done.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 24 done.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 21 done.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 3 done.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 1 done.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 30 done.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 26 done.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 17 done.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 7 done.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 19 done.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]======|\u001b[38;5;246mPerforming CiC done.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]======|\u001b[38;5;246mPerforming CiC reduction...\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x1489b0000b60 for threadedDensity[1] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x1488e8000b60 for threadedDensity[2] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x1489a0000b60 for threadedDensity[3] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x1489b8000b60 for threadedDensity[4] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x1488d0000b60 for threadedDensity[5] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x1488e0000b60 for threadedDensity[6] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148970000b60 for threadedDensity[7] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148908000b60 for threadedDensity[8] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148950000b60 for threadedDensity[9] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148968000b60 for threadedDensity[10] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148980000b60 for threadedDensity[11] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148920000b60 for threadedDensity[12] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148960000b60 for threadedDensity[13] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148930000b60 for threadedDensity[14] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148918000b60 for threadedDensity[15] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148900000b60 for threadedDensity[16] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x1488dc000b60 for threadedDensity[17] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148938000b60 for threadedDensity[18] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x1488f8000b60 for threadedDensity[19] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148928000b60 for threadedDensity[20] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148990000b60 for threadedDensity[21] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148958000b60 for threadedDensity[22] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148910000b60 for threadedDensity[23] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x1488f0000b60 for threadedDensity[24] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148998000b60 for threadedDensity[25] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148978000b60 for threadedDensity[26] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148940000b60 for threadedDensity[27] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148988000b60 for threadedDensity[28] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x1488d8000b60 for threadedDensity[29] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x1489a8000b60 for threadedDensity[30] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148948000b60 for threadedDensity[31] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]======|\u001b[38;5;246mPerforming CiC reduction done.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]====|Getting density contrast (using 32 cores and 32 arrays, parallel routine 1) done.\n",
"[02:24:18\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]====|Getting gravitational potential, periodic boundary conditions (using 32 cores)...\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated memory (1081344 bytes) at 0x55cb08bbb180 for AUX in \u001b[38;5;227mpoisson_solvers.c\u001b[0;36m:\u001b[38;5;192msolve_poisson_DFT\u001b[0;36m:\u001b[0;32m106\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08bbb180 for AUX in \u001b[38;5;227mpoisson_solvers.c\u001b[0;36m:\u001b[38;5;192msolve_poisson_DFT\u001b[0;36m:\u001b[0;32m116\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]====|Getting gravitational potential, periodic boundary conditions (using 32 cores) done.\n",
"[02:24:18\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]====|Kicking particles (using 32 cores)...\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mnkick=9\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mndrift=9\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246maiKick=0.453750\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246maDrift=0.477500\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mafKick=0.501250\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mbeta_delta=-0.051639\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mbeta_lpt_1=0.000000\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mbeta_lpt_2=0.000000\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mbeta_ext=0.000000\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated memory (1048576 bytes) at 0x55cb08bbb180 for g_pad in \u001b[38;5;227mpmcola.c\u001b[0;36m:\u001b[38;5;192mkick_pm_cola\u001b[0;36m:\u001b[0;32m478\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated memory (393216 bytes) at 0x55cb08cbb190 for pp in \u001b[38;5;227mpmcola.c\u001b[0;36m:\u001b[38;5;192mkick_pm_cola\u001b[0;36m:\u001b[0;32m554\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Acceleration loop, direction 0...\n",
"[02:24:18\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Acceleration loop, direction 0 done.\n",
"[02:24:18\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Kick loop, direction 0...\n",
"[02:24:18\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Kick loop, direction 0 done.\n",
"[02:24:18\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Acceleration loop, direction 1...\n",
"[02:24:18\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Acceleration loop, direction 1 done.\n",
"[02:24:18\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Kick loop, direction 1...\n",
"[02:24:18\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Kick loop, direction 1 done.\n",
"[02:24:18\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Acceleration loop, direction 2...\n",
"[02:24:18\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Acceleration loop, direction 2 done.\n",
"[02:24:18\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Kick loop, direction 2...\n",
"[02:24:18\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Kick loop, direction 2 done.\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08bbb180 for g_pad in \u001b[38;5;227mpmcola.c\u001b[0;36m:\u001b[38;5;192mkick_pm_cola\u001b[0;36m:\u001b[0;32m592\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08cbb190 for pp in \u001b[38;5;227mpmcola.c\u001b[0;36m:\u001b[38;5;192mkick_pm_cola\u001b[0;36m:\u001b[0;32m598\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]====|Kicking particles (using 32 cores) done.\n",
"[02:24:18\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]====|Drifting particles (using 32 cores)...\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mndrift=9\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mnkick=9\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246maiDrift=0.477500\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246maKick=0.501250\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mafDrift=0.525000\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246malpha_p=0.212551\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246malpha_lpt_1=0.000000\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246malpha_lpt_2=0.000000\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246malpha_ext=0.000000\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Drift loop, direction 0...\n",
"[02:24:18\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Drift loop, direction 0 done.\n",
"[02:24:18\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Drift loop, direction 1...\n",
"[02:24:18\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Drift loop, direction 1 done.\n",
"[02:24:18\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Drift loop, direction 2...\n",
"[02:24:18\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Drift loop, direction 2 done.\n",
"[02:24:18\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]====|Drifting particles (using 32 cores) done.\n",
"[02:24:18\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]==|ModuleP3M: End sPM step 10/20, time_kick:0.501250, time_drift=0.525000.\n",
"[02:24:18\u001b[00m|\u001b[38;5;159mTIMER \u001b[00m]==|Step 10/20: Density: 0.348 CPU - 0.012 wallclock seconds used.\n",
"[02:24:18\u001b[00m|\u001b[38;5;159mTIMER \u001b[00m]==|Step 10/20: Potential: 1.030 CPU - 0.041 wallclock seconds used.\n",
"[02:24:18\u001b[00m|\u001b[38;5;159mTIMER \u001b[00m]==|Step 10/20: Accelerations (long-range): 1.244 CPU - 0.044 wallclock seconds used.\n",
"[02:24:18\u001b[00m|\u001b[38;5;159mTIMER \u001b[00m]==|Step 10/20: Accelerations (short-range): 0.380 CPU - 0.012 wallclock seconds used.\n",
"[02:24:18\u001b[00m|\u001b[38;5;159mTIMER \u001b[00m]==|Step 10/20: Kick: 0.971 CPU - 0.033 wallclock seconds used.\n",
"[02:24:18\u001b[00m|\u001b[38;5;159mTIMER \u001b[00m]==|Step 10/20: Drift: 2.277 CPU - 0.074 wallclock seconds used.\n",
"[02:24:18\u001b[00m|\u001b[38;5;159mTIMER \u001b[00m]==|Step 10/20: Inputs: 0.000 CPU - 0.000 wallclock seconds used.\n",
"[02:24:18\u001b[00m|\u001b[38;5;159mTIMER \u001b[00m]==|Step 10/20: Diagnostic: 0.000 CPU - 0.000 wallclock seconds used.\n",
"[02:24:18\u001b[00m|\u001b[38;5;159mTIMER \u001b[00m]==|Step 10/20: Outputs: 0.000 CPU - 0.000 wallclock seconds used.\n",
"[02:24:18\u001b[00m|\u001b[38;5;159mTIMER \u001b[00m]==|Step 10/20: Total Evolution: 6.249 CPU - 0.216 wallclock seconds used.\n",
"[02:24:18\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]==|ModuleP3M: Begin sPM step 11/20, time_kick:0.501250, time_drift=0.525000.\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]====|\u001b[38;5;246mGiven the available memory, 4095 threads could be allocated and 32 threads will be used in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel\u001b[0;36m:\u001b[0;32m347\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]====|\u001b[38;5;246mGiven the available memory, 4095 threads could be allocated and 32 threads will be used in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m73\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]====|Getting density contrast (using 32 cores and 32 arrays, parallel routine 1)...\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]======|\u001b[38;5;246mPerforming CiC binning...\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 0...\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1488dc000b60 for threadedDensity[17] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148968000b60 for threadedDensity[10] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148940000b60 for threadedDensity[27] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1489b8000b60 for threadedDensity[4] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 27...\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 4...\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148960000b60 for threadedDensity[13] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148958000b60 for threadedDensity[22] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 13...\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 22...\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1488d8000b60 for threadedDensity[29] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1488e0000b60 for threadedDensity[6] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 29...\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 6...\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148900000b60 for threadedDensity[16] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148998000b60 for threadedDensity[25] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148920000b60 for threadedDensity[12] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 25...\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 12...\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 16...\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148948000b60 for threadedDensity[31] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 10...\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148918000b60 for threadedDensity[15] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 31...\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148930000b60 for threadedDensity[14] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148938000b60 for threadedDensity[18] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 14...\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 18...\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148908000b60 for threadedDensity[8] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148910000b60 for threadedDensity[23] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 8...\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 23...\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 15...\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148950000b60 for threadedDensity[9] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148988000b60 for threadedDensity[28] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148980000b60 for threadedDensity[11] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 28...\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 11...\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 9...\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148928000b60 for threadedDensity[20] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148990000b60 for threadedDensity[21] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1489a0000b60 for threadedDensity[3] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 21...\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 3...\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 20...\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1488f0000b60 for threadedDensity[24] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1489a8000b60 for threadedDensity[30] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 17...\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148978000b60 for threadedDensity[26] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 24...\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 26...\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 30...\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148970000b60 for threadedDensity[7] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1488f8000b60 for threadedDensity[19] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 7...\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 19...\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1488e8000b60 for threadedDensity[2] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 2...\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1489b0000b60 for threadedDensity[1] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 1...\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1488d0000b60 for threadedDensity[5] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 5...\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 20 done.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 0 done.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 29 done.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 6 done.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 5 done.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 13 done.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 22 done.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 27 done.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 4 done.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 16 done.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 31 done.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 14 done.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 18 done.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 12 done.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 15 done.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 10 done.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 23 done.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 8 done.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 28 done.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 11 done.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 26 done.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 17 done.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 2 done.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 9 done.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 21 done.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 3 done.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 1 done.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 30 done.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 19 done.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 7 done.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 25 done.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 24 done.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]======|\u001b[38;5;246mPerforming CiC done.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]======|\u001b[38;5;246mPerforming CiC reduction...\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x1489b0000b60 for threadedDensity[1] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x1488e8000b60 for threadedDensity[2] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x1489a0000b60 for threadedDensity[3] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x1489b8000b60 for threadedDensity[4] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x1488d0000b60 for threadedDensity[5] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x1488e0000b60 for threadedDensity[6] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148970000b60 for threadedDensity[7] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148908000b60 for threadedDensity[8] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148950000b60 for threadedDensity[9] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148968000b60 for threadedDensity[10] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148980000b60 for threadedDensity[11] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:18\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148920000b60 for threadedDensity[12] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:19\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148960000b60 for threadedDensity[13] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:19\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148930000b60 for threadedDensity[14] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:19\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148918000b60 for threadedDensity[15] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:19\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148900000b60 for threadedDensity[16] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:19\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x1488dc000b60 for threadedDensity[17] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:19\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148938000b60 for threadedDensity[18] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:19\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x1488f8000b60 for threadedDensity[19] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:19\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148928000b60 for threadedDensity[20] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:19\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148990000b60 for threadedDensity[21] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:19\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148958000b60 for threadedDensity[22] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:19\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148910000b60 for threadedDensity[23] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:19\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x1488f0000b60 for threadedDensity[24] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:19\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148998000b60 for threadedDensity[25] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:19\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148978000b60 for threadedDensity[26] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:19\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148940000b60 for threadedDensity[27] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:19\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148988000b60 for threadedDensity[28] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:19\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x1488d8000b60 for threadedDensity[29] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:19\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x1489a8000b60 for threadedDensity[30] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:19\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148948000b60 for threadedDensity[31] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:19\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]======|\u001b[38;5;246mPerforming CiC reduction done.\u001b[00m\n",
"[02:24:19\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]====|Getting density contrast (using 32 cores and 32 arrays, parallel routine 1) done.\n",
"[02:24:19\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]====|Getting gravitational potential, periodic boundary conditions (using 32 cores)...\n",
"[02:24:19\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated memory (1081344 bytes) at 0x55cb08bbb180 for AUX in \u001b[38;5;227mpoisson_solvers.c\u001b[0;36m:\u001b[38;5;192msolve_poisson_DFT\u001b[0;36m:\u001b[0;32m106\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:19\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08bbb180 for AUX in \u001b[38;5;227mpoisson_solvers.c\u001b[0;36m:\u001b[38;5;192msolve_poisson_DFT\u001b[0;36m:\u001b[0;32m116\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:19\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]====|Getting gravitational potential, periodic boundary conditions (using 32 cores) done.\n",
"[02:24:19\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]====|Kicking particles (using 32 cores)...\n",
"[02:24:19\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mnkick=10\u001b[00m\n",
"[02:24:19\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mndrift=10\u001b[00m\n",
"[02:24:19\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246maiKick=0.501250\u001b[00m\n",
"[02:24:19\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246maDrift=0.525000\u001b[00m\n",
"[02:24:19\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mafKick=0.548750\u001b[00m\n",
"[02:24:19\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mbeta_delta=-0.047743\u001b[00m\n",
"[02:24:19\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mbeta_lpt_1=0.000000\u001b[00m\n",
"[02:24:19\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mbeta_lpt_2=0.000000\u001b[00m\n",
"[02:24:19\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mbeta_ext=0.000000\u001b[00m\n",
"[02:24:19\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated memory (1048576 bytes) at 0x55cb08bbb180 for g_pad in \u001b[38;5;227mpmcola.c\u001b[0;36m:\u001b[38;5;192mkick_pm_cola\u001b[0;36m:\u001b[0;32m478\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:19\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated memory (393216 bytes) at 0x55cb08cbb190 for pp in \u001b[38;5;227mpmcola.c\u001b[0;36m:\u001b[38;5;192mkick_pm_cola\u001b[0;36m:\u001b[0;32m554\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:19\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Acceleration loop, direction 0...\n",
"[02:24:19\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Acceleration loop, direction 0 done.\n",
"[02:24:19\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Kick loop, direction 0...\n",
"[02:24:19\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Kick loop, direction 0 done.\n",
"[02:24:19\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Acceleration loop, direction 1...\n",
"[02:24:19\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Acceleration loop, direction 1 done.\n",
"[02:24:19\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Kick loop, direction 1...\n",
"[02:24:19\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Kick loop, direction 1 done.\n",
"[02:24:19\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Acceleration loop, direction 2...\n",
"[02:24:19\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Acceleration loop, direction 2 done.\n",
"[02:24:19\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Kick loop, direction 2...\n",
"[02:24:19\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Kick loop, direction 2 done.\n",
"[02:24:19\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08bbb180 for g_pad in \u001b[38;5;227mpmcola.c\u001b[0;36m:\u001b[38;5;192mkick_pm_cola\u001b[0;36m:\u001b[0;32m592\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:19\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08cbb190 for pp in \u001b[38;5;227mpmcola.c\u001b[0;36m:\u001b[38;5;192mkick_pm_cola\u001b[0;36m:\u001b[0;32m598\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:19\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]====|Kicking particles (using 32 cores) done.\n",
"[02:24:19\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]====|Drifting particles (using 32 cores)...\n",
"[02:24:19\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mndrift=10\u001b[00m\n",
"[02:24:19\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mnkick=10\u001b[00m\n",
"[02:24:19\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246maiDrift=0.525000\u001b[00m\n",
"[02:24:19\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246maKick=0.548750\u001b[00m\n",
"[02:24:19\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mafDrift=0.572500\u001b[00m\n",
"[02:24:19\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246malpha_p=0.179514\u001b[00m\n",
"[02:24:19\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246malpha_lpt_1=0.000000\u001b[00m\n",
"[02:24:19\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246malpha_lpt_2=0.000000\u001b[00m\n",
"[02:24:19\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246malpha_ext=0.000000\u001b[00m\n",
"[02:24:19\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Drift loop, direction 0...\n",
"[02:24:19\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Drift loop, direction 0 done.\n",
"[02:24:19\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Drift loop, direction 1...\n",
"[02:24:19\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Drift loop, direction 1 done.\n",
"[02:24:19\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Drift loop, direction 2...\n",
"[02:24:19\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Drift loop, direction 2 done.\n",
"[02:24:19\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]====|Drifting particles (using 32 cores) done.\n",
"[02:24:19\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]==|ModuleP3M: End sPM step 11/20, time_kick:0.548750, time_drift=0.572500.\n",
"[02:24:19\u001b[00m|\u001b[38;5;159mTIMER \u001b[00m]==|Step 11/20: Density: 13.226 CPU - 0.435 wallclock seconds used.\n",
"[02:24:19\u001b[00m|\u001b[38;5;159mTIMER \u001b[00m]==|Step 11/20: Potential: 0.977 CPU - 0.042 wallclock seconds used.\n",
"[02:24:19\u001b[00m|\u001b[38;5;159mTIMER \u001b[00m]==|Step 11/20: Accelerations (long-range): 1.264 CPU - 0.045 wallclock seconds used.\n",
"[02:24:19\u001b[00m|\u001b[38;5;159mTIMER \u001b[00m]==|Step 11/20: Accelerations (short-range): 0.371 CPU - 0.014 wallclock seconds used.\n",
"[02:24:19\u001b[00m|\u001b[38;5;159mTIMER \u001b[00m]==|Step 11/20: Kick: 1.176 CPU - 0.039 wallclock seconds used.\n",
"[02:24:19\u001b[00m|\u001b[38;5;159mTIMER \u001b[00m]==|Step 11/20: Drift: 2.087 CPU - 0.068 wallclock seconds used.\n",
"[02:24:19\u001b[00m|\u001b[38;5;159mTIMER \u001b[00m]==|Step 11/20: Inputs: 0.000 CPU - 0.000 wallclock seconds used.\n",
"[02:24:19\u001b[00m|\u001b[38;5;159mTIMER \u001b[00m]==|Step 11/20: Diagnostic: 0.000 CPU - 0.000 wallclock seconds used.\n",
"[02:24:19\u001b[00m|\u001b[38;5;159mTIMER \u001b[00m]==|Step 11/20: Outputs: 0.000 CPU - 0.000 wallclock seconds used.\n",
"[02:24:19\u001b[00m|\u001b[38;5;159mTIMER \u001b[00m]==|Step 11/20: Total Evolution: 19.100 CPU - 0.643 wallclock seconds used.\n",
"[02:24:19\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]==|ModuleP3M: Begin sPM step 12/20, time_kick:0.548750, time_drift=0.572500.\n",
"[02:24:19\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]====|\u001b[38;5;246mGiven the available memory, 4095 threads could be allocated and 32 threads will be used in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel\u001b[0;36m:\u001b[0;32m347\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:19\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]====|\u001b[38;5;246mGiven the available memory, 4095 threads could be allocated and 32 threads will be used in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m73\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:19\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]====|Getting density contrast (using 32 cores and 32 arrays, parallel routine 1)...\n",
"[02:24:19\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]======|\u001b[38;5;246mPerforming CiC binning...\u001b[00m\n",
"[02:24:19\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 0...\u001b[00m\n",
"[02:24:19\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148960000b60 for threadedDensity[13] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:19\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148958000b60 for threadedDensity[22] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:19\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 13...\u001b[00m\n",
"[02:24:19\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 22...\u001b[00m\n",
"[02:24:19\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1488d8000b60 for threadedDensity[29] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:19\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1488e0000b60 for threadedDensity[6] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:19\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 29...\u001b[00m\n",
"[02:24:19\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 6...\u001b[00m\n",
"[02:24:19\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148998000b60 for threadedDensity[25] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:19\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148920000b60 for threadedDensity[12] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:19\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 25...\u001b[00m\n",
"[02:24:19\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 12...\u001b[00m\n",
"[02:24:19\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148940000b60 for threadedDensity[27] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:19\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1489b8000b60 for threadedDensity[4] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:19\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 27...\u001b[00m\n",
"[02:24:19\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 4...\u001b[00m\n",
"[02:24:19\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148948000b60 for threadedDensity[31] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:19\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148900000b60 for threadedDensity[16] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:19\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 31...\u001b[00m\n",
"[02:24:19\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 16...\u001b[00m\n",
"[02:24:19\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148930000b60 for threadedDensity[14] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:19\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148938000b60 for threadedDensity[18] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:19\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 14...\u001b[00m\n",
"[02:24:19\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 18...\u001b[00m\n",
"[02:24:19\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148968000b60 for threadedDensity[10] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:19\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148918000b60 for threadedDensity[15] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:19\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 10...\u001b[00m\n",
"[02:24:19\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 15...\u001b[00m\n",
"[02:24:19\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148910000b60 for threadedDensity[23] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:19\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148908000b60 for threadedDensity[8] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:19\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 23...\u001b[00m\n",
"[02:24:19\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 8...\u001b[00m\n",
"[02:24:19\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148980000b60 for threadedDensity[11] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:19\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1488f0000b60 for threadedDensity[24] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:19\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 11...\u001b[00m\n",
"[02:24:19\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1488d0000b60 for threadedDensity[5] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:19\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148950000b60 for threadedDensity[9] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:19\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148928000b60 for threadedDensity[20] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:19\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 9...\u001b[00m\n",
"[02:24:19\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 20...\u001b[00m\n",
"[02:24:19\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 5...\u001b[00m\n",
"[02:24:19\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 24...\u001b[00m\n",
"[02:24:19\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1488dc000b60 for threadedDensity[17] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:19\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148978000b60 for threadedDensity[26] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:19\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 17...\u001b[00m\n",
"[02:24:19\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 26...\u001b[00m\n",
"[02:24:19\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148990000b60 for threadedDensity[21] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:19\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1489a8000b60 for threadedDensity[30] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:19\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 21...\u001b[00m\n",
"[02:24:19\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 30...\u001b[00m\n",
"[02:24:19\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1488f8000b60 for threadedDensity[19] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:19\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148970000b60 for threadedDensity[7] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:19\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 19...\u001b[00m\n",
"[02:24:19\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 7...\u001b[00m\n",
"[02:24:19\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1488e8000b60 for threadedDensity[2] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:19\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 2...\u001b[00m\n",
"[02:24:19\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1489a0000b60 for threadedDensity[3] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:19\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 3...\u001b[00m\n",
"[02:24:19\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1489b0000b60 for threadedDensity[1] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:19\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 1...\u001b[00m\n",
"[02:24:19\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148988000b60 for threadedDensity[28] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:19\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 28...\u001b[00m\n",
"[02:24:19\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 5 done.\u001b[00m\n",
"[02:24:19\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 2 done.\u001b[00m\n",
"[02:24:19\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 6 done.\u001b[00m\n",
"[02:24:19\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 29 done.\u001b[00m\n",
"[02:24:19\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 13 done.\u001b[00m\n",
"[02:24:19\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 22 done.\u001b[00m\n",
"[02:24:19\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 27 done.\u001b[00m\n",
"[02:24:19\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 4 done.\u001b[00m\n",
"[02:24:19\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 16 done.\u001b[00m\n",
"[02:24:19\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 31 done.\u001b[00m\n",
"[02:24:19\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 18 done.\u001b[00m\n",
"[02:24:19\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 14 done.\u001b[00m\n",
"[02:24:19\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 25 done.\u001b[00m\n",
"[02:24:19\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 12 done.\u001b[00m\n",
"[02:24:19\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 8 done.\u001b[00m\n",
"[02:24:19\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 23 done.\u001b[00m\n",
"[02:24:19\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 10 done.\u001b[00m\n",
"[02:24:19\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 15 done.\u001b[00m\n",
"[02:24:19\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 20 done.\u001b[00m\n",
"[02:24:19\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 9 done.\u001b[00m\n",
"[02:24:19\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 0 done.\u001b[00m\n",
"[02:24:19\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 28 done.\u001b[00m\n",
"[02:24:19\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 26 done.\u001b[00m\n",
"[02:24:19\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 17 done.\u001b[00m\n",
"[02:24:19\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 21 done.\u001b[00m\n",
"[02:24:19\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 3 done.\u001b[00m\n",
"[02:24:19\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 24 done.\u001b[00m\n",
"[02:24:19\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 19 done.\u001b[00m\n",
"[02:24:19\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 7 done.\u001b[00m\n",
"[02:24:19\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 1 done.\u001b[00m\n",
"[02:24:19\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 30 done.\u001b[00m\n",
"[02:24:19\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 11 done.\u001b[00m\n",
"[02:24:19\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]======|\u001b[38;5;246mPerforming CiC done.\u001b[00m\n",
"[02:24:19\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]======|\u001b[38;5;246mPerforming CiC reduction...\u001b[00m\n",
"[02:24:19\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x1489b0000b60 for threadedDensity[1] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:19\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x1488e8000b60 for threadedDensity[2] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:19\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x1489a0000b60 for threadedDensity[3] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:19\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x1489b8000b60 for threadedDensity[4] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:19\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x1488d0000b60 for threadedDensity[5] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:19\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x1488e0000b60 for threadedDensity[6] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:19\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148970000b60 for threadedDensity[7] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:19\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148908000b60 for threadedDensity[8] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:19\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148950000b60 for threadedDensity[9] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:19\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148968000b60 for threadedDensity[10] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:19\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148980000b60 for threadedDensity[11] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:19\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148920000b60 for threadedDensity[12] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:19\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148960000b60 for threadedDensity[13] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:19\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148930000b60 for threadedDensity[14] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:19\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148918000b60 for threadedDensity[15] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:19\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148900000b60 for threadedDensity[16] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:19\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x1488dc000b60 for threadedDensity[17] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:19\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148938000b60 for threadedDensity[18] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:19\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x1488f8000b60 for threadedDensity[19] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:19\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148928000b60 for threadedDensity[20] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:19\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148990000b60 for threadedDensity[21] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:19\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148958000b60 for threadedDensity[22] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:19\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148910000b60 for threadedDensity[23] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:19\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x1488f0000b60 for threadedDensity[24] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:19\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148998000b60 for threadedDensity[25] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:19\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148978000b60 for threadedDensity[26] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:19\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148940000b60 for threadedDensity[27] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:19\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148988000b60 for threadedDensity[28] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:19\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x1488d8000b60 for threadedDensity[29] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:19\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x1489a8000b60 for threadedDensity[30] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:19\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148948000b60 for threadedDensity[31] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:19\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]======|\u001b[38;5;246mPerforming CiC reduction done.\u001b[00m\n",
"[02:24:19\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]====|Getting density contrast (using 32 cores and 32 arrays, parallel routine 1) done.\n",
"[02:24:19\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]====|Getting gravitational potential, periodic boundary conditions (using 32 cores)...\n",
"[02:24:19\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated memory (1081344 bytes) at 0x55cb08bbb180 for AUX in \u001b[38;5;227mpoisson_solvers.c\u001b[0;36m:\u001b[38;5;192msolve_poisson_DFT\u001b[0;36m:\u001b[0;32m106\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:19\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08bbb180 for AUX in \u001b[38;5;227mpoisson_solvers.c\u001b[0;36m:\u001b[38;5;192msolve_poisson_DFT\u001b[0;36m:\u001b[0;32m116\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:19\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]====|Getting gravitational potential, periodic boundary conditions (using 32 cores) done.\n",
"[02:24:19\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]====|Kicking particles (using 32 cores)...\n",
"[02:24:19\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mnkick=11\u001b[00m\n",
"[02:24:19\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mndrift=11\u001b[00m\n",
"[02:24:19\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246maiKick=0.548750\u001b[00m\n",
"[02:24:19\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246maDrift=0.572500\u001b[00m\n",
"[02:24:19\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mafKick=0.596250\u001b[00m\n",
"[02:24:19\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mbeta_delta=-0.044157\u001b[00m\n",
"[02:24:19\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mbeta_lpt_1=0.000000\u001b[00m\n",
"[02:24:19\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mbeta_lpt_2=0.000000\u001b[00m\n",
"[02:24:19\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mbeta_ext=0.000000\u001b[00m\n",
"[02:24:19\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated memory (1048576 bytes) at 0x55cb08bbb180 for g_pad in \u001b[38;5;227mpmcola.c\u001b[0;36m:\u001b[38;5;192mkick_pm_cola\u001b[0;36m:\u001b[0;32m478\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:19\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated memory (393216 bytes) at 0x55cb08cbb190 for pp in \u001b[38;5;227mpmcola.c\u001b[0;36m:\u001b[38;5;192mkick_pm_cola\u001b[0;36m:\u001b[0;32m554\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:19\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Acceleration loop, direction 0...\n",
"[02:24:19\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Acceleration loop, direction 0 done.\n",
"[02:24:19\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Kick loop, direction 0...\n",
"[02:24:19\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Kick loop, direction 0 done.\n",
"[02:24:19\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Acceleration loop, direction 1...\n",
"[02:24:19\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Acceleration loop, direction 1 done.\n",
"[02:24:19\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Kick loop, direction 1...\n",
"[02:24:19\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Kick loop, direction 1 done.\n",
"[02:24:19\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Acceleration loop, direction 2...\n",
"[02:24:19\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Acceleration loop, direction 2 done.\n",
"[02:24:19\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Kick loop, direction 2...\n",
"[02:24:19\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Kick loop, direction 2 done.\n",
"[02:24:19\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08bbb180 for g_pad in \u001b[38;5;227mpmcola.c\u001b[0;36m:\u001b[38;5;192mkick_pm_cola\u001b[0;36m:\u001b[0;32m592\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:19\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08cbb190 for pp in \u001b[38;5;227mpmcola.c\u001b[0;36m:\u001b[38;5;192mkick_pm_cola\u001b[0;36m:\u001b[0;32m598\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:19\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]====|Kicking particles (using 32 cores) done.\n",
"[02:24:19\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]====|Drifting particles (using 32 cores)...\n",
"[02:24:19\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mndrift=11\u001b[00m\n",
"[02:24:19\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mnkick=11\u001b[00m\n",
"[02:24:19\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246maiDrift=0.572500\u001b[00m\n",
"[02:24:19\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246maKick=0.596250\u001b[00m\n",
"[02:24:19\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mafDrift=0.620000\u001b[00m\n",
"[02:24:19\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246malpha_p=0.152790\u001b[00m\n",
"[02:24:19\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246malpha_lpt_1=0.000000\u001b[00m\n",
"[02:24:19\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246malpha_lpt_2=0.000000\u001b[00m\n",
"[02:24:19\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246malpha_ext=0.000000\u001b[00m\n",
"[02:24:19\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Drift loop, direction 0...\n",
"[02:24:19\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Drift loop, direction 0 done.\n",
"[02:24:19\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Drift loop, direction 1...\n",
"[02:24:19\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Drift loop, direction 1 done.\n",
"[02:24:19\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Drift loop, direction 2...\n",
"[02:24:19\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Drift loop, direction 2 done.\n",
"[02:24:19\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]====|Drifting particles (using 32 cores) done.\n",
"[02:24:19\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]==|ModuleP3M: End sPM step 12/20, time_kick:0.596250, time_drift=0.620000.\n",
"[02:24:19\u001b[00m|\u001b[38;5;159mTIMER \u001b[00m]==|Step 12/20: Density: 6.635 CPU - 0.217 wallclock seconds used.\n",
"[02:24:19\u001b[00m|\u001b[38;5;159mTIMER \u001b[00m]==|Step 12/20: Potential: 0.817 CPU - 0.029 wallclock seconds used.\n",
"[02:24:19\u001b[00m|\u001b[38;5;159mTIMER \u001b[00m]==|Step 12/20: Accelerations (long-range): 1.260 CPU - 0.044 wallclock seconds used.\n",
"[02:24:19\u001b[00m|\u001b[38;5;159mTIMER \u001b[00m]==|Step 12/20: Accelerations (short-range): 0.363 CPU - 0.012 wallclock seconds used.\n",
"[02:24:19\u001b[00m|\u001b[38;5;159mTIMER \u001b[00m]==|Step 12/20: Kick: 1.160 CPU - 0.039 wallclock seconds used.\n",
"[02:24:19\u001b[00m|\u001b[38;5;159mTIMER \u001b[00m]==|Step 12/20: Drift: 2.088 CPU - 0.069 wallclock seconds used.\n",
"[02:24:19\u001b[00m|\u001b[38;5;159mTIMER \u001b[00m]==|Step 12/20: Inputs: 0.000 CPU - 0.000 wallclock seconds used.\n",
"[02:24:19\u001b[00m|\u001b[38;5;159mTIMER \u001b[00m]==|Step 12/20: Diagnostic: 0.000 CPU - 0.000 wallclock seconds used.\n",
"[02:24:19\u001b[00m|\u001b[38;5;159mTIMER \u001b[00m]==|Step 12/20: Outputs: 0.000 CPU - 0.000 wallclock seconds used.\n",
"[02:24:19\u001b[00m|\u001b[38;5;159mTIMER \u001b[00m]==|Step 12/20: Total Evolution: 12.322 CPU - 0.410 wallclock seconds used.\n",
"[02:24:19\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]==|ModuleP3M: Begin sPM step 13/20, time_kick:0.596250, time_drift=0.620000.\n",
"[02:24:19\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]====|\u001b[38;5;246mGiven the available memory, 4095 threads could be allocated and 32 threads will be used in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel\u001b[0;36m:\u001b[0;32m347\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:19\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]====|\u001b[38;5;246mGiven the available memory, 4095 threads could be allocated and 32 threads will be used in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m73\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:19\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]====|Getting density contrast (using 32 cores and 32 arrays, parallel routine 1)...\n",
"[02:24:19\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]======|\u001b[38;5;246mPerforming CiC binning...\u001b[00m\n",
"[02:24:19\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 0...\u001b[00m\n",
"[02:24:19\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148980000b60 for threadedDensity[11] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:19\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 11...\u001b[00m\n",
"[02:24:19\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148900000b60 for threadedDensity[16] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:19\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1488e0000b60 for threadedDensity[6] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:19\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1488d8000b60 for threadedDensity[29] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:19\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 6...\u001b[00m\n",
"[02:24:19\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 29...\u001b[00m\n",
"[02:24:19\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148940000b60 for threadedDensity[27] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:19\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1489b8000b60 for threadedDensity[4] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:19\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 27...\u001b[00m\n",
"[02:24:19\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 4...\u001b[00m\n",
"[02:24:19\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148958000b60 for threadedDensity[22] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:19\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148960000b60 for threadedDensity[13] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:19\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 22...\u001b[00m\n",
"[02:24:19\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 13...\u001b[00m\n",
"[02:24:19\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148948000b60 for threadedDensity[31] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:19\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 16...\u001b[00m\n",
"[02:24:19\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 31...\u001b[00m\n",
"[02:24:19\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148998000b60 for threadedDensity[25] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:19\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148920000b60 for threadedDensity[12] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:19\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 25...\u001b[00m\n",
"[02:24:19\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 12...\u001b[00m\n",
"[02:24:19\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148938000b60 for threadedDensity[18] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:19\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148930000b60 for threadedDensity[14] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:19\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 18...\u001b[00m\n",
"[02:24:19\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 14...\u001b[00m\n",
"[02:24:19\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148918000b60 for threadedDensity[15] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:19\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148968000b60 for threadedDensity[10] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:19\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 15...\u001b[00m\n",
"[02:24:19\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 10...\u001b[00m\n",
"[02:24:19\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148910000b60 for threadedDensity[23] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:19\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148908000b60 for threadedDensity[8] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:19\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 23...\u001b[00m\n",
"[02:24:19\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 8...\u001b[00m\n",
"[02:24:19\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1488d0000b60 for threadedDensity[5] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:19\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148990000b60 for threadedDensity[21] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:19\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148950000b60 for threadedDensity[9] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:19\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148928000b60 for threadedDensity[20] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:19\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 9...\u001b[00m\n",
"[02:24:19\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 20...\u001b[00m\n",
"[02:24:19\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 5...\u001b[00m\n",
"[02:24:19\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148978000b60 for threadedDensity[26] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:19\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1488dc000b60 for threadedDensity[17] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:19\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 26...\u001b[00m\n",
"[02:24:19\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 17...\u001b[00m\n",
"[02:24:19\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1488f0000b60 for threadedDensity[24] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:19\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148988000b60 for threadedDensity[28] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:19\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 24...\u001b[00m\n",
"[02:24:19\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 28...\u001b[00m\n",
"[02:24:19\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 21...\u001b[00m\n",
"[02:24:19\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148970000b60 for threadedDensity[7] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:19\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1488f8000b60 for threadedDensity[19] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:19\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 7...\u001b[00m\n",
"[02:24:19\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 19...\u001b[00m\n",
"[02:24:19\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1489a8000b60 for threadedDensity[30] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:19\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 30...\u001b[00m\n",
"[02:24:19\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1488e8000b60 for threadedDensity[2] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:19\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 2...\u001b[00m\n",
"[02:24:19\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1489a0000b60 for threadedDensity[3] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:19\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 3...\u001b[00m\n",
"[02:24:19\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1489b0000b60 for threadedDensity[1] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:19\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 1...\u001b[00m\n",
"[02:24:19\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 29 done.\u001b[00m\n",
"[02:24:19\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 6 done.\u001b[00m\n",
"[02:24:19\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 22 done.\u001b[00m\n",
"[02:24:19\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 13 done.\u001b[00m\n",
"[02:24:19\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 31 done.\u001b[00m\n",
"[02:24:19\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 16 done.\u001b[00m\n",
"[02:24:19\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 27 done.\u001b[00m\n",
"[02:24:19\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 4 done.\u001b[00m\n",
"[02:24:19\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 25 done.\u001b[00m\n",
"[02:24:19\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 12 done.\u001b[00m\n",
"[02:24:19\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 14 done.\u001b[00m\n",
"[02:24:19\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 18 done.\u001b[00m\n",
"[02:24:19\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 15 done.\u001b[00m\n",
"[02:24:19\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 10 done.\u001b[00m\n",
"[02:24:19\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 23 done.\u001b[00m\n",
"[02:24:19\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 8 done.\u001b[00m\n",
"[02:24:19\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 9 done.\u001b[00m\n",
"[02:24:19\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 20 done.\u001b[00m\n",
"[02:24:19\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 11 done.\u001b[00m\n",
"[02:24:19\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 3 done.\u001b[00m\n",
"[02:24:19\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 21 done.\u001b[00m\n",
"[02:24:19\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 28 done.\u001b[00m\n",
"[02:24:19\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 24 done.\u001b[00m\n",
"[02:24:19\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 17 done.\u001b[00m\n",
"[02:24:19\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 26 done.\u001b[00m\n",
"[02:24:19\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 5 done.\u001b[00m\n",
"[02:24:19\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 2 done.\u001b[00m\n",
"[02:24:19\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 7 done.\u001b[00m\n",
"[02:24:19\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 19 done.\u001b[00m\n",
"[02:24:19\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 0 done.\u001b[00m\n",
"[02:24:19\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 1 done.\u001b[00m\n",
"[02:24:19\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 30 done.\u001b[00m\n",
"[02:24:19\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]======|\u001b[38;5;246mPerforming CiC done.\u001b[00m\n",
"[02:24:19\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]======|\u001b[38;5;246mPerforming CiC reduction...\u001b[00m\n",
"[02:24:19\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x1489b0000b60 for threadedDensity[1] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:19\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x1488e8000b60 for threadedDensity[2] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:19\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x1489a0000b60 for threadedDensity[3] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:19\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x1489b8000b60 for threadedDensity[4] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:19\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x1488d0000b60 for threadedDensity[5] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:19\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x1488e0000b60 for threadedDensity[6] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:19\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148970000b60 for threadedDensity[7] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:19\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148908000b60 for threadedDensity[8] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:20\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148950000b60 for threadedDensity[9] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:20\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148968000b60 for threadedDensity[10] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:20\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148980000b60 for threadedDensity[11] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:20\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148920000b60 for threadedDensity[12] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:20\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148960000b60 for threadedDensity[13] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:20\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148930000b60 for threadedDensity[14] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:20\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148918000b60 for threadedDensity[15] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:20\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148900000b60 for threadedDensity[16] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:20\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x1488dc000b60 for threadedDensity[17] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:20\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148938000b60 for threadedDensity[18] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:20\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x1488f8000b60 for threadedDensity[19] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:20\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148928000b60 for threadedDensity[20] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:20\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148990000b60 for threadedDensity[21] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:20\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148958000b60 for threadedDensity[22] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:20\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148910000b60 for threadedDensity[23] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:20\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x1488f0000b60 for threadedDensity[24] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:20\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148998000b60 for threadedDensity[25] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:20\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148978000b60 for threadedDensity[26] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:20\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148940000b60 for threadedDensity[27] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:20\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148988000b60 for threadedDensity[28] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:20\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x1488d8000b60 for threadedDensity[29] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:20\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x1489a8000b60 for threadedDensity[30] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:20\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148948000b60 for threadedDensity[31] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:20\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]======|\u001b[38;5;246mPerforming CiC reduction done.\u001b[00m\n",
"[02:24:20\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]====|Getting density contrast (using 32 cores and 32 arrays, parallel routine 1) done.\n",
"[02:24:20\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]====|Getting gravitational potential, periodic boundary conditions (using 32 cores)...\n",
"[02:24:20\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated memory (1081344 bytes) at 0x55cb08bbb180 for AUX in \u001b[38;5;227mpoisson_solvers.c\u001b[0;36m:\u001b[38;5;192msolve_poisson_DFT\u001b[0;36m:\u001b[0;32m106\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:20\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08bbb180 for AUX in \u001b[38;5;227mpoisson_solvers.c\u001b[0;36m:\u001b[38;5;192msolve_poisson_DFT\u001b[0;36m:\u001b[0;32m116\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:20\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]====|Getting gravitational potential, periodic boundary conditions (using 32 cores) done.\n",
"[02:24:20\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]====|Kicking particles (using 32 cores)...\n",
"[02:24:20\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mnkick=12\u001b[00m\n",
"[02:24:20\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mndrift=12\u001b[00m\n",
"[02:24:20\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246maiKick=0.596250\u001b[00m\n",
"[02:24:20\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246maDrift=0.620000\u001b[00m\n",
"[02:24:20\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mafKick=0.643750\u001b[00m\n",
"[02:24:20\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mbeta_delta=-0.040843\u001b[00m\n",
"[02:24:20\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mbeta_lpt_1=0.000000\u001b[00m\n",
"[02:24:20\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mbeta_lpt_2=0.000000\u001b[00m\n",
"[02:24:20\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mbeta_ext=0.000000\u001b[00m\n",
"[02:24:20\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated memory (1048576 bytes) at 0x55cb08bbb180 for g_pad in \u001b[38;5;227mpmcola.c\u001b[0;36m:\u001b[38;5;192mkick_pm_cola\u001b[0;36m:\u001b[0;32m478\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:20\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated memory (393216 bytes) at 0x55cb08cbb190 for pp in \u001b[38;5;227mpmcola.c\u001b[0;36m:\u001b[38;5;192mkick_pm_cola\u001b[0;36m:\u001b[0;32m554\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:20\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Acceleration loop, direction 0...\n",
"[02:24:20\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Acceleration loop, direction 0 done.\n",
"[02:24:20\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Kick loop, direction 0...\n",
"[02:24:20\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Kick loop, direction 0 done.\n",
"[02:24:20\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Acceleration loop, direction 1...\n",
"[02:24:20\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Acceleration loop, direction 1 done.\n",
"[02:24:20\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Kick loop, direction 1...\n",
"[02:24:20\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Kick loop, direction 1 done.\n",
"[02:24:20\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Acceleration loop, direction 2...\n",
"[02:24:20\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Acceleration loop, direction 2 done.\n",
"[02:24:20\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Kick loop, direction 2...\n",
"[02:24:20\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Kick loop, direction 2 done.\n",
"[02:24:20\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08bbb180 for g_pad in \u001b[38;5;227mpmcola.c\u001b[0;36m:\u001b[38;5;192mkick_pm_cola\u001b[0;36m:\u001b[0;32m592\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:20\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08cbb190 for pp in \u001b[38;5;227mpmcola.c\u001b[0;36m:\u001b[38;5;192mkick_pm_cola\u001b[0;36m:\u001b[0;32m598\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:20\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]====|Kicking particles (using 32 cores) done.\n",
"[02:24:20\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]====|Drifting particles (using 32 cores)...\n",
"[02:24:20\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mndrift=12\u001b[00m\n",
"[02:24:20\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mnkick=12\u001b[00m\n",
"[02:24:20\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246maiDrift=0.620000\u001b[00m\n",
"[02:24:20\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246maKick=0.643750\u001b[00m\n",
"[02:24:20\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mafDrift=0.667500\u001b[00m\n",
"[02:24:20\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246malpha_p=0.130883\u001b[00m\n",
"[02:24:20\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246malpha_lpt_1=0.000000\u001b[00m\n",
"[02:24:20\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246malpha_lpt_2=0.000000\u001b[00m\n",
"[02:24:20\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246malpha_ext=0.000000\u001b[00m\n",
"[02:24:20\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Drift loop, direction 0...\n",
"[02:24:20\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Drift loop, direction 0 done.\n",
"[02:24:20\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Drift loop, direction 1...\n",
"[02:24:20\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Drift loop, direction 1 done.\n",
"[02:24:20\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Drift loop, direction 2...\n",
"[02:24:20\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Drift loop, direction 2 done.\n",
"[02:24:20\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]====|Drifting particles (using 32 cores) done.\n",
"[02:24:20\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]==|ModuleP3M: End sPM step 13/20, time_kick:0.643750, time_drift=0.667500.\n",
"[02:24:20\u001b[00m|\u001b[38;5;159mTIMER \u001b[00m]==|Step 13/20: Density: 10.068 CPU - 0.334 wallclock seconds used.\n",
"[02:24:20\u001b[00m|\u001b[38;5;159mTIMER \u001b[00m]==|Step 13/20: Potential: 0.815 CPU - 0.028 wallclock seconds used.\n",
"[02:24:20\u001b[00m|\u001b[38;5;159mTIMER \u001b[00m]==|Step 13/20: Accelerations (long-range): 1.247 CPU - 0.044 wallclock seconds used.\n",
"[02:24:20\u001b[00m|\u001b[38;5;159mTIMER \u001b[00m]==|Step 13/20: Accelerations (short-range): 0.378 CPU - 0.013 wallclock seconds used.\n",
"[02:24:20\u001b[00m|\u001b[38;5;159mTIMER \u001b[00m]==|Step 13/20: Kick: 1.158 CPU - 0.039 wallclock seconds used.\n",
"[02:24:20\u001b[00m|\u001b[38;5;159mTIMER \u001b[00m]==|Step 13/20: Drift: 2.279 CPU - 0.075 wallclock seconds used.\n",
"[02:24:20\u001b[00m|\u001b[38;5;159mTIMER \u001b[00m]==|Step 13/20: Inputs: 0.000 CPU - 0.000 wallclock seconds used.\n",
"[02:24:20\u001b[00m|\u001b[38;5;159mTIMER \u001b[00m]==|Step 13/20: Diagnostic: 0.000 CPU - 0.000 wallclock seconds used.\n",
"[02:24:20\u001b[00m|\u001b[38;5;159mTIMER \u001b[00m]==|Step 13/20: Outputs: 0.000 CPU - 0.000 wallclock seconds used.\n",
"[02:24:20\u001b[00m|\u001b[38;5;159mTIMER \u001b[00m]==|Step 13/20: Total Evolution: 15.946 CPU - 0.533 wallclock seconds used.\n",
"[02:24:20\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]==|ModuleP3M: Begin sPM step 14/20, time_kick:0.643750, time_drift=0.667500.\n",
"[02:24:20\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]====|\u001b[38;5;246mGiven the available memory, 4095 threads could be allocated and 32 threads will be used in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel\u001b[0;36m:\u001b[0;32m347\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:20\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]====|\u001b[38;5;246mGiven the available memory, 4095 threads could be allocated and 32 threads will be used in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m73\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:20\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]====|Getting density contrast (using 32 cores and 32 arrays, parallel routine 1)...\n",
"[02:24:20\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]======|\u001b[38;5;246mPerforming CiC binning...\u001b[00m\n",
"[02:24:20\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 0...\u001b[00m\n",
"[02:24:20\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148928000b60 for threadedDensity[20] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:20\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148950000b60 for threadedDensity[9] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:20\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 20...\u001b[00m\n",
"[02:24:20\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 9...\u001b[00m\n",
"[02:24:20\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148980000b60 for threadedDensity[11] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:20\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 11...\u001b[00m\n",
"[02:24:20\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1489a8000b60 for threadedDensity[30] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:20\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148960000b60 for threadedDensity[13] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:20\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148958000b60 for threadedDensity[22] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:20\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 13...\u001b[00m\n",
"[02:24:20\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 22...\u001b[00m\n",
"[02:24:20\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1488d8000b60 for threadedDensity[29] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:20\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1488e0000b60 for threadedDensity[6] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:20\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 29...\u001b[00m\n",
"[02:24:20\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 6...\u001b[00m\n",
"[02:24:20\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148940000b60 for threadedDensity[27] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:20\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1489b8000b60 for threadedDensity[4] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:20\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 27...\u001b[00m\n",
"[02:24:20\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 4...\u001b[00m\n",
"[02:24:20\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148900000b60 for threadedDensity[16] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:20\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148948000b60 for threadedDensity[31] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:20\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 16...\u001b[00m\n",
"[02:24:20\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 31...\u001b[00m\n",
"[02:24:20\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148998000b60 for threadedDensity[25] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:20\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148920000b60 for threadedDensity[12] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:20\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 25...\u001b[00m\n",
"[02:24:20\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 12...\u001b[00m\n",
"[02:24:20\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148930000b60 for threadedDensity[14] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:20\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148938000b60 for threadedDensity[18] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:20\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 14...\u001b[00m\n",
"[02:24:20\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 18...\u001b[00m\n",
"[02:24:20\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148918000b60 for threadedDensity[15] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:20\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148968000b60 for threadedDensity[10] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:20\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 15...\u001b[00m\n",
"[02:24:20\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 10...\u001b[00m\n",
"[02:24:20\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148910000b60 for threadedDensity[23] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:20\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148908000b60 for threadedDensity[8] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:20\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 23...\u001b[00m\n",
"[02:24:20\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 8...\u001b[00m\n",
"[02:24:20\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 30...\u001b[00m\n",
"[02:24:20\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148990000b60 for threadedDensity[21] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:20\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148970000b60 for threadedDensity[7] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:20\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1488f8000b60 for threadedDensity[19] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:20\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 7...\u001b[00m\n",
"[02:24:20\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 19...\u001b[00m\n",
"[02:24:20\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148978000b60 for threadedDensity[26] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:20\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1488dc000b60 for threadedDensity[17] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:20\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 26...\u001b[00m\n",
"[02:24:20\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 17...\u001b[00m\n",
"[02:24:20\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 21...\u001b[00m\n",
"[02:24:20\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148988000b60 for threadedDensity[28] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:20\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1488f0000b60 for threadedDensity[24] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:20\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 28...\u001b[00m\n",
"[02:24:20\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 24...\u001b[00m\n",
"[02:24:20\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1489b0000b60 for threadedDensity[1] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:20\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 1...\u001b[00m\n",
"[02:24:20\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1489a0000b60 for threadedDensity[3] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:20\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 3...\u001b[00m\n",
"[02:24:20\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1488e8000b60 for threadedDensity[2] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:20\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 2...\u001b[00m\n",
"[02:24:20\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1488d0000b60 for threadedDensity[5] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:20\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 5...\u001b[00m\n",
"[02:24:20\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 2 done.\u001b[00m\n",
"[02:24:20\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 5 done.\u001b[00m\n",
"[02:24:20\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 29 done.\u001b[00m\n",
"[02:24:20\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 6 done.\u001b[00m\n",
"[02:24:20\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 22 done.\u001b[00m\n",
"[02:24:20\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 13 done.\u001b[00m\n",
"[02:24:20\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 31 done.\u001b[00m\n",
"[02:24:20\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 16 done.\u001b[00m\n",
"[02:24:20\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 4 done.\u001b[00m\n",
"[02:24:20\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 27 done.\u001b[00m\n",
"[02:24:20\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 25 done.\u001b[00m\n",
"[02:24:20\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 12 done.\u001b[00m\n",
"[02:24:20\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 14 done.\u001b[00m\n",
"[02:24:20\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 18 done.\u001b[00m\n",
"[02:24:20\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 8 done.\u001b[00m\n",
"[02:24:20\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 23 done.\u001b[00m\n",
"[02:24:20\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 10 done.\u001b[00m\n",
"[02:24:20\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 15 done.\u001b[00m\n",
"[02:24:20\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 30 done.\u001b[00m\n",
"[02:24:20\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 11 done.\u001b[00m\n",
"[02:24:20\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 20 done.\u001b[00m\n",
"[02:24:20\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 9 done.\u001b[00m\n",
"[02:24:20\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 28 done.\u001b[00m\n",
"[02:24:20\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 24 done.\u001b[00m\n",
"[02:24:20\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 26 done.\u001b[00m\n",
"[02:24:20\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 17 done.\u001b[00m\n",
"[02:24:20\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 21 done.\u001b[00m\n",
"[02:24:20\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 3 done.\u001b[00m\n",
"[02:24:20\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 1 done.\u001b[00m\n",
"[02:24:20\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 19 done.\u001b[00m\n",
"[02:24:20\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 7 done.\u001b[00m\n",
"[02:24:20\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 0 done.\u001b[00m\n",
"[02:24:20\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]======|\u001b[38;5;246mPerforming CiC done.\u001b[00m\n",
"[02:24:20\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]======|\u001b[38;5;246mPerforming CiC reduction...\u001b[00m\n",
"[02:24:20\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x1489b0000b60 for threadedDensity[1] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:20\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x1488e8000b60 for threadedDensity[2] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:20\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x1489a0000b60 for threadedDensity[3] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:20\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x1489b8000b60 for threadedDensity[4] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:20\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x1488d0000b60 for threadedDensity[5] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:20\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x1488e0000b60 for threadedDensity[6] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:20\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148970000b60 for threadedDensity[7] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:20\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148908000b60 for threadedDensity[8] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:20\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148950000b60 for threadedDensity[9] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:20\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148968000b60 for threadedDensity[10] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:20\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148980000b60 for threadedDensity[11] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:20\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148920000b60 for threadedDensity[12] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:20\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148960000b60 for threadedDensity[13] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:20\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148930000b60 for threadedDensity[14] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:20\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148918000b60 for threadedDensity[15] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:20\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148900000b60 for threadedDensity[16] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:20\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x1488dc000b60 for threadedDensity[17] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:20\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148938000b60 for threadedDensity[18] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:20\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x1488f8000b60 for threadedDensity[19] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:20\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148928000b60 for threadedDensity[20] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:20\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148990000b60 for threadedDensity[21] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:20\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148958000b60 for threadedDensity[22] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:20\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148910000b60 for threadedDensity[23] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:20\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x1488f0000b60 for threadedDensity[24] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:20\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148998000b60 for threadedDensity[25] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:20\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148978000b60 for threadedDensity[26] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:20\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148940000b60 for threadedDensity[27] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:20\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148988000b60 for threadedDensity[28] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:20\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x1488d8000b60 for threadedDensity[29] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:20\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x1489a8000b60 for threadedDensity[30] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:20\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148948000b60 for threadedDensity[31] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:20\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]======|\u001b[38;5;246mPerforming CiC reduction done.\u001b[00m\n",
"[02:24:20\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]====|Getting density contrast (using 32 cores and 32 arrays, parallel routine 1) done.\n",
"[02:24:20\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]====|Getting gravitational potential, periodic boundary conditions (using 32 cores)...\n",
"[02:24:20\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated memory (1081344 bytes) at 0x55cb08bbb180 for AUX in \u001b[38;5;227mpoisson_solvers.c\u001b[0;36m:\u001b[38;5;192msolve_poisson_DFT\u001b[0;36m:\u001b[0;32m106\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:20\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08bbb180 for AUX in \u001b[38;5;227mpoisson_solvers.c\u001b[0;36m:\u001b[38;5;192msolve_poisson_DFT\u001b[0;36m:\u001b[0;32m116\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:20\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]====|Getting gravitational potential, periodic boundary conditions (using 32 cores) done.\n",
"[02:24:20\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]====|Kicking particles (using 32 cores)...\n",
"[02:24:20\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mnkick=13\u001b[00m\n",
"[02:24:20\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mndrift=13\u001b[00m\n",
"[02:24:20\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246maiKick=0.643750\u001b[00m\n",
"[02:24:20\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246maDrift=0.667500\u001b[00m\n",
"[02:24:20\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mafKick=0.691250\u001b[00m\n",
"[02:24:20\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mbeta_delta=-0.037779\u001b[00m\n",
"[02:24:20\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mbeta_lpt_1=0.000000\u001b[00m\n",
"[02:24:20\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mbeta_lpt_2=0.000000\u001b[00m\n",
"[02:24:20\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mbeta_ext=0.000000\u001b[00m\n",
"[02:24:20\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated memory (1048576 bytes) at 0x55cb08bbb180 for g_pad in \u001b[38;5;227mpmcola.c\u001b[0;36m:\u001b[38;5;192mkick_pm_cola\u001b[0;36m:\u001b[0;32m478\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:20\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated memory (393216 bytes) at 0x55cb08cbb190 for pp in \u001b[38;5;227mpmcola.c\u001b[0;36m:\u001b[38;5;192mkick_pm_cola\u001b[0;36m:\u001b[0;32m554\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:20\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Acceleration loop, direction 0...\n",
"[02:24:20\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Acceleration loop, direction 0 done.\n",
"[02:24:20\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Kick loop, direction 0...\n",
"[02:24:20\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Kick loop, direction 0 done.\n",
"[02:24:20\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Acceleration loop, direction 1...\n",
"[02:24:20\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Acceleration loop, direction 1 done.\n",
"[02:24:20\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Kick loop, direction 1...\n",
"[02:24:20\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Kick loop, direction 1 done.\n",
"[02:24:20\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Acceleration loop, direction 2...\n",
"[02:24:20\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Acceleration loop, direction 2 done.\n",
"[02:24:20\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Kick loop, direction 2...\n",
"[02:24:20\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Kick loop, direction 2 done.\n",
"[02:24:20\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08bbb180 for g_pad in \u001b[38;5;227mpmcola.c\u001b[0;36m:\u001b[38;5;192mkick_pm_cola\u001b[0;36m:\u001b[0;32m592\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:20\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08cbb190 for pp in \u001b[38;5;227mpmcola.c\u001b[0;36m:\u001b[38;5;192mkick_pm_cola\u001b[0;36m:\u001b[0;32m598\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:20\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]====|Kicking particles (using 32 cores) done.\n",
"[02:24:20\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]====|Drifting particles (using 32 cores)...\n",
"[02:24:20\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mndrift=13\u001b[00m\n",
"[02:24:20\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mnkick=13\u001b[00m\n",
"[02:24:20\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246maiDrift=0.667500\u001b[00m\n",
"[02:24:20\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246maKick=0.691250\u001b[00m\n",
"[02:24:20\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mafDrift=0.715000\u001b[00m\n",
"[02:24:20\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246malpha_p=0.112737\u001b[00m\n",
"[02:24:20\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246malpha_lpt_1=0.000000\u001b[00m\n",
"[02:24:20\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246malpha_lpt_2=0.000000\u001b[00m\n",
"[02:24:20\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246malpha_ext=0.000000\u001b[00m\n",
"[02:24:20\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Drift loop, direction 0...\n",
"[02:24:20\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Drift loop, direction 0 done.\n",
"[02:24:20\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Drift loop, direction 1...\n",
"[02:24:20\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Drift loop, direction 1 done.\n",
"[02:24:20\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Drift loop, direction 2...\n",
"[02:24:20\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Drift loop, direction 2 done.\n",
"[02:24:20\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]====|Drifting particles (using 32 cores) done.\n",
"[02:24:20\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]==|ModuleP3M: End sPM step 14/20, time_kick:0.691250, time_drift=0.715000.\n",
"[02:24:20\u001b[00m|\u001b[38;5;159mTIMER \u001b[00m]==|Step 14/20: Density: 2.268 CPU - 0.075 wallclock seconds used.\n",
"[02:24:20\u001b[00m|\u001b[38;5;159mTIMER \u001b[00m]==|Step 14/20: Potential: 0.577 CPU - 0.020 wallclock seconds used.\n",
"[02:24:20\u001b[00m|\u001b[38;5;159mTIMER \u001b[00m]==|Step 14/20: Accelerations (long-range): 0.095 CPU - 0.004 wallclock seconds used.\n",
"[02:24:20\u001b[00m|\u001b[38;5;159mTIMER \u001b[00m]==|Step 14/20: Accelerations (short-range): 0.000 CPU - 0.000 wallclock seconds used.\n",
"[02:24:20\u001b[00m|\u001b[38;5;159mTIMER \u001b[00m]==|Step 14/20: Kick: 0.032 CPU - 0.001 wallclock seconds used.\n",
"[02:24:20\u001b[00m|\u001b[38;5;159mTIMER \u001b[00m]==|Step 14/20: Drift: 0.000 CPU - 0.000 wallclock seconds used.\n",
"[02:24:20\u001b[00m|\u001b[38;5;159mTIMER \u001b[00m]==|Step 14/20: Inputs: 0.000 CPU - 0.000 wallclock seconds used.\n",
"[02:24:20\u001b[00m|\u001b[38;5;159mTIMER \u001b[00m]==|Step 14/20: Diagnostic: 0.000 CPU - 0.000 wallclock seconds used.\n",
"[02:24:20\u001b[00m|\u001b[38;5;159mTIMER \u001b[00m]==|Step 14/20: Outputs: 0.000 CPU - 0.000 wallclock seconds used.\n",
"[02:24:20\u001b[00m|\u001b[38;5;159mTIMER \u001b[00m]==|Step 14/20: Total Evolution: 2.973 CPU - 0.100 wallclock seconds used.\n",
"[02:24:20\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]==|ModuleP3M: Begin sPM step 15/20, time_kick:0.691250, time_drift=0.715000.\n",
"[02:24:20\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]====|\u001b[38;5;246mGiven the available memory, 4095 threads could be allocated and 32 threads will be used in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel\u001b[0;36m:\u001b[0;32m347\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:20\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]====|\u001b[38;5;246mGiven the available memory, 4095 threads could be allocated and 32 threads will be used in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m73\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:20\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]====|Getting density contrast (using 32 cores and 32 arrays, parallel routine 1)...\n",
"[02:24:20\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]======|\u001b[38;5;246mPerforming CiC binning...\u001b[00m\n",
"[02:24:20\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 0...\u001b[00m\n",
"[02:24:20\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148950000b60 for threadedDensity[9] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:20\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148928000b60 for threadedDensity[20] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:20\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 9...\u001b[00m\n",
"[02:24:20\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 20...\u001b[00m\n",
"[02:24:20\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148980000b60 for threadedDensity[11] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:20\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 11...\u001b[00m\n",
"[02:24:20\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1488e0000b60 for threadedDensity[6] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:20\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1488d8000b60 for threadedDensity[29] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:20\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 6...\u001b[00m\n",
"[02:24:20\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 29...\u001b[00m\n",
"[02:24:20\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148958000b60 for threadedDensity[22] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:20\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148960000b60 for threadedDensity[13] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:20\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 22...\u001b[00m\n",
"[02:24:20\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 13...\u001b[00m\n",
"[02:24:20\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1489b8000b60 for threadedDensity[4] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:20\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148940000b60 for threadedDensity[27] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:20\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 4...\u001b[00m\n",
"[02:24:20\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 27...\u001b[00m\n",
"[02:24:20\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148900000b60 for threadedDensity[16] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:20\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148948000b60 for threadedDensity[31] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:20\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 16...\u001b[00m\n",
"[02:24:20\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 31...\u001b[00m\n",
"[02:24:20\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148998000b60 for threadedDensity[25] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:20\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148920000b60 for threadedDensity[12] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:20\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 25...\u001b[00m\n",
"[02:24:20\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 12...\u001b[00m\n",
"[02:24:20\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148930000b60 for threadedDensity[14] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:20\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148938000b60 for threadedDensity[18] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:20\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 14...\u001b[00m\n",
"[02:24:20\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 18...\u001b[00m\n",
"[02:24:20\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148918000b60 for threadedDensity[15] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:20\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148968000b60 for threadedDensity[10] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:20\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 15...\u001b[00m\n",
"[02:24:20\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 10...\u001b[00m\n",
"[02:24:20\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148908000b60 for threadedDensity[8] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:20\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148910000b60 for threadedDensity[23] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:20\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 8...\u001b[00m\n",
"[02:24:20\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 23...\u001b[00m\n",
"[02:24:20\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1489a8000b60 for threadedDensity[30] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:20\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1488dc000b60 for threadedDensity[17] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:20\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148978000b60 for threadedDensity[26] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:20\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 17...\u001b[00m\n",
"[02:24:20\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 26...\u001b[00m\n",
"[02:24:20\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 30...\u001b[00m\n",
"[02:24:20\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148990000b60 for threadedDensity[21] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:20\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148988000b60 for threadedDensity[28] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:20\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1488f0000b60 for threadedDensity[24] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:20\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 28...\u001b[00m\n",
"[02:24:20\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 24...\u001b[00m\n",
"[02:24:20\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1488d0000b60 for threadedDensity[5] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:20\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 5...\u001b[00m\n",
"[02:24:20\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 21...\u001b[00m\n",
"[02:24:20\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1489b0000b60 for threadedDensity[1] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:20\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1488f8000b60 for threadedDensity[19] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:20\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148970000b60 for threadedDensity[7] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:20\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 19...\u001b[00m\n",
"[02:24:20\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 7...\u001b[00m\n",
"[02:24:20\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 1...\u001b[00m\n",
"[02:24:20\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1488e8000b60 for threadedDensity[2] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:20\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1489a0000b60 for threadedDensity[3] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:20\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 2...\u001b[00m\n",
"[02:24:20\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 3...\u001b[00m\n",
"[02:24:20\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 21 done.\u001b[00m\n",
"[02:24:20\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 3 done.\u001b[00m\n",
"[02:24:20\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 22 done.\u001b[00m\n",
"[02:24:20\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 13 done.\u001b[00m\n",
"[02:24:20\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 29 done.\u001b[00m\n",
"[02:24:20\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 6 done.\u001b[00m\n",
"[02:24:20\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 31 done.\u001b[00m\n",
"[02:24:20\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 16 done.\u001b[00m\n",
"[02:24:20\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 27 done.\u001b[00m\n",
"[02:24:20\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 4 done.\u001b[00m\n",
"[02:24:20\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 25 done.\u001b[00m\n",
"[02:24:20\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 12 done.\u001b[00m\n",
"[02:24:20\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 14 done.\u001b[00m\n",
"[02:24:20\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 18 done.\u001b[00m\n",
"[02:24:20\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 15 done.\u001b[00m\n",
"[02:24:20\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 10 done.\u001b[00m\n",
"[02:24:20\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 8 done.\u001b[00m\n",
"[02:24:20\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 23 done.\u001b[00m\n",
"[02:24:20\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 11 done.\u001b[00m\n",
"[02:24:20\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 30 done.\u001b[00m\n",
"[02:24:20\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 5 done.\u001b[00m\n",
"[02:24:20\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 2 done.\u001b[00m\n",
"[02:24:20\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 20 done.\u001b[00m\n",
"[02:24:20\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 9 done.\u001b[00m\n",
"[02:24:20\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 26 done.\u001b[00m\n",
"[02:24:20\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 17 done.\u001b[00m\n",
"[02:24:20\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 1 done.\u001b[00m\n",
"[02:24:20\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 0 done.\u001b[00m\n",
"[02:24:20\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 28 done.\u001b[00m\n",
"[02:24:20\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 24 done.\u001b[00m\n",
"[02:24:20\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 7 done.\u001b[00m\n",
"[02:24:20\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 19 done.\u001b[00m\n",
"[02:24:20\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]======|\u001b[38;5;246mPerforming CiC done.\u001b[00m\n",
"[02:24:20\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]======|\u001b[38;5;246mPerforming CiC reduction...\u001b[00m\n",
"[02:24:20\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x1489b0000b60 for threadedDensity[1] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:20\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x1488e8000b60 for threadedDensity[2] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:20\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x1489a0000b60 for threadedDensity[3] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:20\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x1489b8000b60 for threadedDensity[4] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:20\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x1488d0000b60 for threadedDensity[5] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:20\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x1488e0000b60 for threadedDensity[6] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:20\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148970000b60 for threadedDensity[7] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:20\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148908000b60 for threadedDensity[8] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:20\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148950000b60 for threadedDensity[9] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:20\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148968000b60 for threadedDensity[10] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:20\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148980000b60 for threadedDensity[11] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:20\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148920000b60 for threadedDensity[12] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:20\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148960000b60 for threadedDensity[13] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:20\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148930000b60 for threadedDensity[14] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:20\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148918000b60 for threadedDensity[15] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:20\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148900000b60 for threadedDensity[16] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:20\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x1488dc000b60 for threadedDensity[17] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:20\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148938000b60 for threadedDensity[18] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:20\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x1488f8000b60 for threadedDensity[19] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:20\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148928000b60 for threadedDensity[20] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:20\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148990000b60 for threadedDensity[21] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:20\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148958000b60 for threadedDensity[22] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:20\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148910000b60 for threadedDensity[23] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:20\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x1488f0000b60 for threadedDensity[24] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:20\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148998000b60 for threadedDensity[25] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:20\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148978000b60 for threadedDensity[26] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:20\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148940000b60 for threadedDensity[27] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:20\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148988000b60 for threadedDensity[28] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:20\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x1488d8000b60 for threadedDensity[29] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:20\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x1489a8000b60 for threadedDensity[30] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:20\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148948000b60 for threadedDensity[31] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:20\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]======|\u001b[38;5;246mPerforming CiC reduction done.\u001b[00m\n",
"[02:24:20\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]====|Getting density contrast (using 32 cores and 32 arrays, parallel routine 1) done.\n",
"[02:24:20\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]====|Getting gravitational potential, periodic boundary conditions (using 32 cores)...\n",
"[02:24:20\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated memory (1081344 bytes) at 0x55cb08bbb180 for AUX in \u001b[38;5;227mpoisson_solvers.c\u001b[0;36m:\u001b[38;5;192msolve_poisson_DFT\u001b[0;36m:\u001b[0;32m106\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:20\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08bbb180 for AUX in \u001b[38;5;227mpoisson_solvers.c\u001b[0;36m:\u001b[38;5;192msolve_poisson_DFT\u001b[0;36m:\u001b[0;32m116\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:20\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]====|Getting gravitational potential, periodic boundary conditions (using 32 cores) done.\n",
"[02:24:20\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]====|Kicking particles (using 32 cores)...\n",
"[02:24:20\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mnkick=14\u001b[00m\n",
"[02:24:20\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mndrift=14\u001b[00m\n",
"[02:24:20\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246maiKick=0.691250\u001b[00m\n",
"[02:24:20\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246maDrift=0.715000\u001b[00m\n",
"[02:24:20\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mafKick=0.738750\u001b[00m\n",
"[02:24:20\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mbeta_delta=-0.034948\u001b[00m\n",
"[02:24:20\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mbeta_lpt_1=0.000000\u001b[00m\n",
"[02:24:20\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mbeta_lpt_2=0.000000\u001b[00m\n",
"[02:24:20\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mbeta_ext=0.000000\u001b[00m\n",
"[02:24:20\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated memory (1048576 bytes) at 0x55cb08bbb180 for g_pad in \u001b[38;5;227mpmcola.c\u001b[0;36m:\u001b[38;5;192mkick_pm_cola\u001b[0;36m:\u001b[0;32m478\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:20\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated memory (393216 bytes) at 0x55cb08cbb190 for pp in \u001b[38;5;227mpmcola.c\u001b[0;36m:\u001b[38;5;192mkick_pm_cola\u001b[0;36m:\u001b[0;32m554\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:20\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Acceleration loop, direction 0...\n",
"[02:24:20\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Acceleration loop, direction 0 done.\n",
"[02:24:20\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Kick loop, direction 0...\n",
"[02:24:20\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Kick loop, direction 0 done.\n",
"[02:24:20\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Acceleration loop, direction 1...\n",
"[02:24:20\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Acceleration loop, direction 1 done.\n",
"[02:24:20\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Kick loop, direction 1...\n",
"[02:24:20\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Kick loop, direction 1 done.\n",
"[02:24:20\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Acceleration loop, direction 2...\n",
"[02:24:20\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Acceleration loop, direction 2 done.\n",
"[02:24:20\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Kick loop, direction 2...\n",
"[02:24:20\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Kick loop, direction 2 done.\n",
"[02:24:20\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08bbb180 for g_pad in \u001b[38;5;227mpmcola.c\u001b[0;36m:\u001b[38;5;192mkick_pm_cola\u001b[0;36m:\u001b[0;32m592\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:20\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08cbb190 for pp in \u001b[38;5;227mpmcola.c\u001b[0;36m:\u001b[38;5;192mkick_pm_cola\u001b[0;36m:\u001b[0;32m598\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:20\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]====|Kicking particles (using 32 cores) done.\n",
"[02:24:20\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]====|Drifting particles (using 32 cores)...\n",
"[02:24:20\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mndrift=14\u001b[00m\n",
"[02:24:20\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mnkick=14\u001b[00m\n",
"[02:24:20\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246maiDrift=0.715000\u001b[00m\n",
"[02:24:20\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246maKick=0.738750\u001b[00m\n",
"[02:24:20\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mafDrift=0.762500\u001b[00m\n",
"[02:24:20\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246malpha_p=0.097587\u001b[00m\n",
"[02:24:20\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246malpha_lpt_1=0.000000\u001b[00m\n",
"[02:24:20\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246malpha_lpt_2=0.000000\u001b[00m\n",
"[02:24:20\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246malpha_ext=0.000000\u001b[00m\n",
"[02:24:20\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Drift loop, direction 0...\n",
"[02:24:20\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Drift loop, direction 0 done.\n",
"[02:24:20\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Drift loop, direction 1...\n",
"[02:24:20\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Drift loop, direction 1 done.\n",
"[02:24:20\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Drift loop, direction 2...\n",
"[02:24:20\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Drift loop, direction 2 done.\n",
"[02:24:20\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]====|Drifting particles (using 32 cores) done.\n",
"[02:24:20\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]==|ModuleP3M: End sPM step 15/20, time_kick:0.738750, time_drift=0.762500.\n",
"[02:24:20\u001b[00m|\u001b[38;5;159mTIMER \u001b[00m]==|Step 15/20: Density: 0.348 CPU - 0.011 wallclock seconds used.\n",
"[02:24:20\u001b[00m|\u001b[38;5;159mTIMER \u001b[00m]==|Step 15/20: Potential: 1.003 CPU - 0.038 wallclock seconds used.\n",
"[02:24:20\u001b[00m|\u001b[38;5;159mTIMER \u001b[00m]==|Step 15/20: Accelerations (long-range): 1.245 CPU - 0.044 wallclock seconds used.\n",
"[02:24:20\u001b[00m|\u001b[38;5;159mTIMER \u001b[00m]==|Step 15/20: Accelerations (short-range): 0.380 CPU - 0.013 wallclock seconds used.\n",
"[02:24:20\u001b[00m|\u001b[38;5;159mTIMER \u001b[00m]==|Step 15/20: Kick: 1.161 CPU - 0.039 wallclock seconds used.\n",
"[02:24:20\u001b[00m|\u001b[38;5;159mTIMER \u001b[00m]==|Step 15/20: Drift: 2.087 CPU - 0.068 wallclock seconds used.\n",
"[02:24:20\u001b[00m|\u001b[38;5;159mTIMER \u001b[00m]==|Step 15/20: Inputs: 0.000 CPU - 0.000 wallclock seconds used.\n",
"[02:24:20\u001b[00m|\u001b[38;5;159mTIMER \u001b[00m]==|Step 15/20: Diagnostic: 0.000 CPU - 0.000 wallclock seconds used.\n",
"[02:24:20\u001b[00m|\u001b[38;5;159mTIMER \u001b[00m]==|Step 15/20: Outputs: 0.000 CPU - 0.000 wallclock seconds used.\n",
"[02:24:20\u001b[00m|\u001b[38;5;159mTIMER \u001b[00m]==|Step 15/20: Total Evolution: 6.224 CPU - 0.212 wallclock seconds used.\n",
"[02:24:20\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]==|ModuleP3M: Begin sPM step 16/20, time_kick:0.738750, time_drift=0.762500.\n",
"[02:24:20\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]====|\u001b[38;5;246mGiven the available memory, 4095 threads could be allocated and 32 threads will be used in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel\u001b[0;36m:\u001b[0;32m347\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:20\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]====|\u001b[38;5;246mGiven the available memory, 4095 threads could be allocated and 32 threads will be used in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m73\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:20\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]====|Getting density contrast (using 32 cores and 32 arrays, parallel routine 1)...\n",
"[02:24:20\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]======|\u001b[38;5;246mPerforming CiC binning...\u001b[00m\n",
"[02:24:20\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 0...\u001b[00m\n",
"[02:24:20\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148950000b60 for threadedDensity[9] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:20\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148928000b60 for threadedDensity[20] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:20\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 9...\u001b[00m\n",
"[02:24:20\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 20...\u001b[00m\n",
"[02:24:20\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1488e0000b60 for threadedDensity[6] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:20\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148930000b60 for threadedDensity[14] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:20\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148938000b60 for threadedDensity[18] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:20\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 14...\u001b[00m\n",
"[02:24:20\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 18...\u001b[00m\n",
"[02:24:20\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1488d8000b60 for threadedDensity[29] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:20\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 6...\u001b[00m\n",
"[02:24:20\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 29...\u001b[00m\n",
"[02:24:20\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148958000b60 for threadedDensity[22] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:20\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148960000b60 for threadedDensity[13] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:20\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 22...\u001b[00m\n",
"[02:24:20\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 13...\u001b[00m\n",
"[02:24:20\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148998000b60 for threadedDensity[25] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:20\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148900000b60 for threadedDensity[16] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:20\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148948000b60 for threadedDensity[31] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:20\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 16...\u001b[00m\n",
"[02:24:20\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 31...\u001b[00m\n",
"[02:24:20\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1489b8000b60 for threadedDensity[4] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:20\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148940000b60 for threadedDensity[27] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:20\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 4...\u001b[00m\n",
"[02:24:20\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 27...\u001b[00m\n",
"[02:24:20\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 25...\u001b[00m\n",
"[02:24:20\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148918000b60 for threadedDensity[15] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:20\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 15...\u001b[00m\n",
"[02:24:20\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148968000b60 for threadedDensity[10] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:20\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148910000b60 for threadedDensity[23] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:20\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148908000b60 for threadedDensity[8] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:20\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 23...\u001b[00m\n",
"[02:24:20\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 8...\u001b[00m\n",
"[02:24:20\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 10...\u001b[00m\n",
"[02:24:20\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1488f0000b60 for threadedDensity[24] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:20\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148988000b60 for threadedDensity[28] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:20\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 24...\u001b[00m\n",
"[02:24:20\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 28...\u001b[00m\n",
"[02:24:20\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148980000b60 for threadedDensity[11] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:20\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1488d0000b60 for threadedDensity[5] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:20\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 11...\u001b[00m\n",
"[02:24:20\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1489a8000b60 for threadedDensity[30] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:20\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 5...\u001b[00m\n",
"[02:24:20\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 30...\u001b[00m\n",
"[02:24:20\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1488dc000b60 for threadedDensity[17] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:20\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148978000b60 for threadedDensity[26] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:20\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 17...\u001b[00m\n",
"[02:24:20\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 26...\u001b[00m\n",
"[02:24:20\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148990000b60 for threadedDensity[21] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:20\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 21...\u001b[00m\n",
"[02:24:20\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1489b0000b60 for threadedDensity[1] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:20\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148970000b60 for threadedDensity[7] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:20\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1488f8000b60 for threadedDensity[19] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:20\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 7...\u001b[00m\n",
"[02:24:20\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 19...\u001b[00m\n",
"[02:24:20\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 1...\u001b[00m\n",
"[02:24:20\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1488e8000b60 for threadedDensity[2] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:20\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 2...\u001b[00m\n",
"[02:24:20\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1489a0000b60 for threadedDensity[3] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:20\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 3...\u001b[00m\n",
"[02:24:20\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148920000b60 for threadedDensity[12] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:20\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 12...\u001b[00m\n",
"[02:24:20\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 26 done.\u001b[00m\n",
"[02:24:20\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 17 done.\u001b[00m\n",
"[02:24:20\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 13 done.\u001b[00m\n",
"[02:24:20\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 22 done.\u001b[00m\n",
"[02:24:20\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 6 done.\u001b[00m\n",
"[02:24:20\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 29 done.\u001b[00m\n",
"[02:24:20\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 31 done.\u001b[00m\n",
"[02:24:20\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 16 done.\u001b[00m\n",
"[02:24:20\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 27 done.\u001b[00m\n",
"[02:24:20\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 4 done.\u001b[00m\n",
"[02:24:20\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 12 done.\u001b[00m\n",
"[02:24:20\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 0 done.\u001b[00m\n",
"[02:24:20\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 14 done.\u001b[00m\n",
"[02:24:20\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 18 done.\u001b[00m\n",
"[02:24:20\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 23 done.\u001b[00m\n",
"[02:24:20\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 8 done.\u001b[00m\n",
"[02:24:20\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 10 done.\u001b[00m\n",
"[02:24:20\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 15 done.\u001b[00m\n",
"[02:24:20\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 5 done.\u001b[00m\n",
"[02:24:20\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 2 done.\u001b[00m\n",
"[02:24:20\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 9 done.\u001b[00m\n",
"[02:24:20\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 20 done.\u001b[00m\n",
"[02:24:20\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 30 done.\u001b[00m\n",
"[02:24:20\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 11 done.\u001b[00m\n",
"[02:24:20\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 28 done.\u001b[00m\n",
"[02:24:20\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 24 done.\u001b[00m\n",
"[02:24:20\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 21 done.\u001b[00m\n",
"[02:24:20\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 3 done.\u001b[00m\n",
"[02:24:20\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 1 done.\u001b[00m\n",
"[02:24:20\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 19 done.\u001b[00m\n",
"[02:24:20\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 7 done.\u001b[00m\n",
"[02:24:20\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 25 done.\u001b[00m\n",
"[02:24:20\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]======|\u001b[38;5;246mPerforming CiC done.\u001b[00m\n",
"[02:24:20\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]======|\u001b[38;5;246mPerforming CiC reduction...\u001b[00m\n",
"[02:24:20\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x1489b0000b60 for threadedDensity[1] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:20\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x1488e8000b60 for threadedDensity[2] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:20\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x1489a0000b60 for threadedDensity[3] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:20\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x1489b8000b60 for threadedDensity[4] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:20\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x1488d0000b60 for threadedDensity[5] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:20\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x1488e0000b60 for threadedDensity[6] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:20\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148970000b60 for threadedDensity[7] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:20\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148908000b60 for threadedDensity[8] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:20\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148950000b60 for threadedDensity[9] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:20\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148968000b60 for threadedDensity[10] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:20\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148980000b60 for threadedDensity[11] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:20\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148920000b60 for threadedDensity[12] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:20\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148960000b60 for threadedDensity[13] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:20\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148930000b60 for threadedDensity[14] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:20\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148918000b60 for threadedDensity[15] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:20\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148900000b60 for threadedDensity[16] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:20\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x1488dc000b60 for threadedDensity[17] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:20\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148938000b60 for threadedDensity[18] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:20\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x1488f8000b60 for threadedDensity[19] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:20\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148928000b60 for threadedDensity[20] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:20\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148990000b60 for threadedDensity[21] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:20\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148958000b60 for threadedDensity[22] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:20\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148910000b60 for threadedDensity[23] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:20\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x1488f0000b60 for threadedDensity[24] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:20\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148998000b60 for threadedDensity[25] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:21\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148978000b60 for threadedDensity[26] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:21\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148940000b60 for threadedDensity[27] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:21\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148988000b60 for threadedDensity[28] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:21\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x1488d8000b60 for threadedDensity[29] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:21\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x1489a8000b60 for threadedDensity[30] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:21\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148948000b60 for threadedDensity[31] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:21\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]======|\u001b[38;5;246mPerforming CiC reduction done.\u001b[00m\n",
"[02:24:21\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]====|Getting density contrast (using 32 cores and 32 arrays, parallel routine 1) done.\n",
"[02:24:21\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]====|Getting gravitational potential, periodic boundary conditions (using 32 cores)...\n",
"[02:24:21\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated memory (1081344 bytes) at 0x55cb08bbb180 for AUX in \u001b[38;5;227mpoisson_solvers.c\u001b[0;36m:\u001b[38;5;192msolve_poisson_DFT\u001b[0;36m:\u001b[0;32m106\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:21\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08bbb180 for AUX in \u001b[38;5;227mpoisson_solvers.c\u001b[0;36m:\u001b[38;5;192msolve_poisson_DFT\u001b[0;36m:\u001b[0;32m116\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:21\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]====|Getting gravitational potential, periodic boundary conditions (using 32 cores) done.\n",
"[02:24:21\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]====|Kicking particles (using 32 cores)...\n",
"[02:24:21\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mnkick=15\u001b[00m\n",
"[02:24:21\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mndrift=15\u001b[00m\n",
"[02:24:21\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246maiKick=0.738750\u001b[00m\n",
"[02:24:21\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246maDrift=0.762500\u001b[00m\n",
"[02:24:21\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mafKick=0.786250\u001b[00m\n",
"[02:24:21\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mbeta_delta=-0.032338\u001b[00m\n",
"[02:24:21\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mbeta_lpt_1=0.000000\u001b[00m\n",
"[02:24:21\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mbeta_lpt_2=0.000000\u001b[00m\n",
"[02:24:21\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mbeta_ext=0.000000\u001b[00m\n",
"[02:24:21\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated memory (1048576 bytes) at 0x55cb08bbb180 for g_pad in \u001b[38;5;227mpmcola.c\u001b[0;36m:\u001b[38;5;192mkick_pm_cola\u001b[0;36m:\u001b[0;32m478\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:21\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated memory (393216 bytes) at 0x55cb08cbb190 for pp in \u001b[38;5;227mpmcola.c\u001b[0;36m:\u001b[38;5;192mkick_pm_cola\u001b[0;36m:\u001b[0;32m554\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:21\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Acceleration loop, direction 0...\n",
"[02:24:21\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Acceleration loop, direction 0 done.\n",
"[02:24:21\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Kick loop, direction 0...\n",
"[02:24:21\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Kick loop, direction 0 done.\n",
"[02:24:21\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Acceleration loop, direction 1...\n",
"[02:24:21\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Acceleration loop, direction 1 done.\n",
"[02:24:21\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Kick loop, direction 1...\n",
"[02:24:21\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Kick loop, direction 1 done.\n",
"[02:24:21\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Acceleration loop, direction 2...\n",
"[02:24:21\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Acceleration loop, direction 2 done.\n",
"[02:24:21\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Kick loop, direction 2...\n",
"[02:24:21\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Kick loop, direction 2 done.\n",
"[02:24:21\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08bbb180 for g_pad in \u001b[38;5;227mpmcola.c\u001b[0;36m:\u001b[38;5;192mkick_pm_cola\u001b[0;36m:\u001b[0;32m592\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:21\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08cbb190 for pp in \u001b[38;5;227mpmcola.c\u001b[0;36m:\u001b[38;5;192mkick_pm_cola\u001b[0;36m:\u001b[0;32m598\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:21\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]====|Kicking particles (using 32 cores) done.\n",
"[02:24:21\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]====|Drifting particles (using 32 cores)...\n",
"[02:24:21\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mndrift=15\u001b[00m\n",
"[02:24:21\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mnkick=15\u001b[00m\n",
"[02:24:21\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246maiDrift=0.762500\u001b[00m\n",
"[02:24:21\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246maKick=0.786250\u001b[00m\n",
"[02:24:21\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mafDrift=0.810000\u001b[00m\n",
"[02:24:21\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246malpha_p=0.084855\u001b[00m\n",
"[02:24:21\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246malpha_lpt_1=0.000000\u001b[00m\n",
"[02:24:21\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246malpha_lpt_2=0.000000\u001b[00m\n",
"[02:24:21\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246malpha_ext=0.000000\u001b[00m\n",
"[02:24:21\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Drift loop, direction 0...\n",
"[02:24:21\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Drift loop, direction 0 done.\n",
"[02:24:21\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Drift loop, direction 1...\n",
"[02:24:21\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Drift loop, direction 1 done.\n",
"[02:24:21\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Drift loop, direction 2...\n",
"[02:24:21\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Drift loop, direction 2 done.\n",
"[02:24:21\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]====|Drifting particles (using 32 cores) done.\n",
"[02:24:21\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]==|ModuleP3M: End sPM step 16/20, time_kick:0.786250, time_drift=0.810000.\n",
"[02:24:21\u001b[00m|\u001b[38;5;159mTIMER \u001b[00m]==|Step 16/20: Density: 9.115 CPU - 0.299 wallclock seconds used.\n",
"[02:24:21\u001b[00m|\u001b[38;5;159mTIMER \u001b[00m]==|Step 16/20: Potential: 0.566 CPU - 0.020 wallclock seconds used.\n",
"[02:24:21\u001b[00m|\u001b[38;5;159mTIMER \u001b[00m]==|Step 16/20: Accelerations (long-range): 0.127 CPU - 0.004 wallclock seconds used.\n",
"[02:24:21\u001b[00m|\u001b[38;5;159mTIMER \u001b[00m]==|Step 16/20: Accelerations (short-range): 0.006 CPU - 0.000 wallclock seconds used.\n",
"[02:24:21\u001b[00m|\u001b[38;5;159mTIMER \u001b[00m]==|Step 16/20: Kick: 0.000 CPU - 0.001 wallclock seconds used.\n",
"[02:24:21\u001b[00m|\u001b[38;5;159mTIMER \u001b[00m]==|Step 16/20: Drift: 0.000 CPU - 0.000 wallclock seconds used.\n",
"[02:24:21\u001b[00m|\u001b[38;5;159mTIMER \u001b[00m]==|Step 16/20: Inputs: 0.000 CPU - 0.000 wallclock seconds used.\n",
"[02:24:21\u001b[00m|\u001b[38;5;159mTIMER \u001b[00m]==|Step 16/20: Diagnostic: 0.000 CPU - 0.000 wallclock seconds used.\n",
"[02:24:21\u001b[00m|\u001b[38;5;159mTIMER \u001b[00m]==|Step 16/20: Outputs: 0.000 CPU - 0.000 wallclock seconds used.\n",
"[02:24:21\u001b[00m|\u001b[38;5;159mTIMER \u001b[00m]==|Step 16/20: Total Evolution: 9.814 CPU - 0.324 wallclock seconds used.\n",
"[02:24:21\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]==|ModuleP3M: Begin sPM step 17/20, time_kick:0.786250, time_drift=0.810000.\n",
"[02:24:21\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]====|\u001b[38;5;246mGiven the available memory, 4095 threads could be allocated and 32 threads will be used in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel\u001b[0;36m:\u001b[0;32m347\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:21\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]====|\u001b[38;5;246mGiven the available memory, 4095 threads could be allocated and 32 threads will be used in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m73\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:21\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]====|Getting density contrast (using 32 cores and 32 arrays, parallel routine 1)...\n",
"[02:24:21\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]======|\u001b[38;5;246mPerforming CiC binning...\u001b[00m\n",
"[02:24:21\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 0...\u001b[00m\n",
"[02:24:21\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148950000b60 for threadedDensity[9] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:21\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148928000b60 for threadedDensity[20] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:21\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 9...\u001b[00m\n",
"[02:24:21\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 20...\u001b[00m\n",
"[02:24:21\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148920000b60 for threadedDensity[12] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:21\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148998000b60 for threadedDensity[25] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:21\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 12...\u001b[00m\n",
"[02:24:21\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 25...\u001b[00m\n",
"[02:24:21\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1488d8000b60 for threadedDensity[29] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:21\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1488e0000b60 for threadedDensity[6] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:21\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 29...\u001b[00m\n",
"[02:24:21\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 6...\u001b[00m\n",
"[02:24:21\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148958000b60 for threadedDensity[22] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:21\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148960000b60 for threadedDensity[13] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:21\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 22...\u001b[00m\n",
"[02:24:21\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 13...\u001b[00m\n",
"[02:24:21\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148948000b60 for threadedDensity[31] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:21\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148900000b60 for threadedDensity[16] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:21\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 31...\u001b[00m\n",
"[02:24:21\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 16...\u001b[00m\n",
"[02:24:21\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1489b8000b60 for threadedDensity[4] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:21\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148940000b60 for threadedDensity[27] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:21\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 4...\u001b[00m\n",
"[02:24:21\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 27...\u001b[00m\n",
"[02:24:21\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148930000b60 for threadedDensity[14] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:21\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148938000b60 for threadedDensity[18] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:21\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 14...\u001b[00m\n",
"[02:24:21\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 18...\u001b[00m\n",
"[02:24:21\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148910000b60 for threadedDensity[23] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:21\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148908000b60 for threadedDensity[8] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:21\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 23...\u001b[00m\n",
"[02:24:21\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 8...\u001b[00m\n",
"[02:24:21\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148918000b60 for threadedDensity[15] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:21\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148968000b60 for threadedDensity[10] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:21\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 15...\u001b[00m\n",
"[02:24:21\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 10...\u001b[00m\n",
"[02:24:21\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148980000b60 for threadedDensity[11] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:21\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148990000b60 for threadedDensity[21] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:21\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 11...\u001b[00m\n",
"[02:24:21\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 21...\u001b[00m\n",
"[02:24:21\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1488dc000b60 for threadedDensity[17] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:21\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148978000b60 for threadedDensity[26] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:21\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 17...\u001b[00m\n",
"[02:24:21\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 26...\u001b[00m\n",
"[02:24:21\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1488d0000b60 for threadedDensity[5] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:21\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1489b0000b60 for threadedDensity[1] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:21\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 5...\u001b[00m\n",
"[02:24:21\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148970000b60 for threadedDensity[7] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:21\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1488f8000b60 for threadedDensity[19] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:21\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 7...\u001b[00m\n",
"[02:24:21\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 19...\u001b[00m\n",
"[02:24:21\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1488f0000b60 for threadedDensity[24] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:21\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148988000b60 for threadedDensity[28] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:21\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 24...\u001b[00m\n",
"[02:24:21\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 28...\u001b[00m\n",
"[02:24:21\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 1...\u001b[00m\n",
"[02:24:21\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1489a8000b60 for threadedDensity[30] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:21\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 30...\u001b[00m\n",
"[02:24:21\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1488e8000b60 for threadedDensity[2] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:21\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 2...\u001b[00m\n",
"[02:24:21\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1489a0000b60 for threadedDensity[3] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:21\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 3...\u001b[00m\n",
"[02:24:21\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 21 done.\u001b[00m\n",
"[02:24:21\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 3 done.\u001b[00m\n",
"[02:24:21\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 22 done.\u001b[00m\n",
"[02:24:21\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 13 done.\u001b[00m\n",
"[02:24:21\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 6 done.\u001b[00m\n",
"[02:24:21\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 29 done.\u001b[00m\n",
"[02:24:21\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 27 done.\u001b[00m\n",
"[02:24:21\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 4 done.\u001b[00m\n",
"[02:24:21\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 31 done.\u001b[00m\n",
"[02:24:21\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 16 done.\u001b[00m\n",
"[02:24:21\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 25 done.\u001b[00m\n",
"[02:24:21\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 12 done.\u001b[00m\n",
"[02:24:21\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 14 done.\u001b[00m\n",
"[02:24:21\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 18 done.\u001b[00m\n",
"[02:24:21\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 10 done.\u001b[00m\n",
"[02:24:21\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 15 done.\u001b[00m\n",
"[02:24:21\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 23 done.\u001b[00m\n",
"[02:24:21\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 8 done.\u001b[00m\n",
"[02:24:21\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 11 done.\u001b[00m\n",
"[02:24:21\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 30 done.\u001b[00m\n",
"[02:24:21\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 9 done.\u001b[00m\n",
"[02:24:21\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 20 done.\u001b[00m\n",
"[02:24:21\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 2 done.\u001b[00m\n",
"[02:24:21\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 5 done.\u001b[00m\n",
"[02:24:21\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 28 done.\u001b[00m\n",
"[02:24:21\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 24 done.\u001b[00m\n",
"[02:24:21\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 17 done.\u001b[00m\n",
"[02:24:21\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 26 done.\u001b[00m\n",
"[02:24:21\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 1 done.\u001b[00m\n",
"[02:24:21\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 0 done.\u001b[00m\n",
"[02:24:21\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 19 done.\u001b[00m\n",
"[02:24:21\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 7 done.\u001b[00m\n",
"[02:24:21\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]======|\u001b[38;5;246mPerforming CiC done.\u001b[00m\n",
"[02:24:21\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]======|\u001b[38;5;246mPerforming CiC reduction...\u001b[00m\n",
"[02:24:21\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x1489b0000b60 for threadedDensity[1] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:21\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x1488e8000b60 for threadedDensity[2] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:21\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x1489a0000b60 for threadedDensity[3] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:21\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x1489b8000b60 for threadedDensity[4] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:21\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x1488d0000b60 for threadedDensity[5] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:21\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x1488e0000b60 for threadedDensity[6] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:21\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148970000b60 for threadedDensity[7] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:21\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148908000b60 for threadedDensity[8] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:21\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148950000b60 for threadedDensity[9] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:21\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148968000b60 for threadedDensity[10] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:21\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148980000b60 for threadedDensity[11] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:21\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148920000b60 for threadedDensity[12] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:21\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148960000b60 for threadedDensity[13] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:21\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148930000b60 for threadedDensity[14] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:21\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148918000b60 for threadedDensity[15] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:21\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148900000b60 for threadedDensity[16] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:21\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x1488dc000b60 for threadedDensity[17] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:21\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148938000b60 for threadedDensity[18] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:21\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x1488f8000b60 for threadedDensity[19] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:21\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148928000b60 for threadedDensity[20] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:21\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148990000b60 for threadedDensity[21] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:21\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148958000b60 for threadedDensity[22] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:21\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148910000b60 for threadedDensity[23] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:21\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x1488f0000b60 for threadedDensity[24] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:21\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148998000b60 for threadedDensity[25] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:21\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148978000b60 for threadedDensity[26] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:21\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148940000b60 for threadedDensity[27] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:21\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148988000b60 for threadedDensity[28] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:21\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x1488d8000b60 for threadedDensity[29] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:21\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x1489a8000b60 for threadedDensity[30] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:21\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148948000b60 for threadedDensity[31] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:21\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]======|\u001b[38;5;246mPerforming CiC reduction done.\u001b[00m\n",
"[02:24:21\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]====|Getting density contrast (using 32 cores and 32 arrays, parallel routine 1) done.\n",
"[02:24:21\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]====|Getting gravitational potential, periodic boundary conditions (using 32 cores)...\n",
"[02:24:21\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated memory (1081344 bytes) at 0x55cb08bbb180 for AUX in \u001b[38;5;227mpoisson_solvers.c\u001b[0;36m:\u001b[38;5;192msolve_poisson_DFT\u001b[0;36m:\u001b[0;32m106\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:21\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08bbb180 for AUX in \u001b[38;5;227mpoisson_solvers.c\u001b[0;36m:\u001b[38;5;192msolve_poisson_DFT\u001b[0;36m:\u001b[0;32m116\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:21\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]====|Getting gravitational potential, periodic boundary conditions (using 32 cores) done.\n",
"[02:24:21\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]====|Kicking particles (using 32 cores)...\n",
"[02:24:21\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mnkick=16\u001b[00m\n",
"[02:24:21\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mndrift=16\u001b[00m\n",
"[02:24:21\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246maiKick=0.786250\u001b[00m\n",
"[02:24:21\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246maDrift=0.810000\u001b[00m\n",
"[02:24:21\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mafKick=0.833750\u001b[00m\n",
"[02:24:21\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mbeta_delta=-0.029936\u001b[00m\n",
"[02:24:21\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mbeta_lpt_1=0.000000\u001b[00m\n",
"[02:24:21\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mbeta_lpt_2=0.000000\u001b[00m\n",
"[02:24:21\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mbeta_ext=0.000000\u001b[00m\n",
"[02:24:21\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated memory (1048576 bytes) at 0x55cb08bbb180 for g_pad in \u001b[38;5;227mpmcola.c\u001b[0;36m:\u001b[38;5;192mkick_pm_cola\u001b[0;36m:\u001b[0;32m478\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:21\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated memory (393216 bytes) at 0x55cb08cbb190 for pp in \u001b[38;5;227mpmcola.c\u001b[0;36m:\u001b[38;5;192mkick_pm_cola\u001b[0;36m:\u001b[0;32m554\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:21\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Acceleration loop, direction 0...\n",
"[02:24:21\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Acceleration loop, direction 0 done.\n",
"[02:24:21\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Kick loop, direction 0...\n",
"[02:24:21\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Kick loop, direction 0 done.\n",
"[02:24:21\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Acceleration loop, direction 1...\n",
"[02:24:21\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Acceleration loop, direction 1 done.\n",
"[02:24:21\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Kick loop, direction 1...\n",
"[02:24:21\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Kick loop, direction 1 done.\n",
"[02:24:21\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Acceleration loop, direction 2...\n",
"[02:24:21\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Acceleration loop, direction 2 done.\n",
"[02:24:21\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Kick loop, direction 2...\n",
"[02:24:21\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Kick loop, direction 2 done.\n",
"[02:24:21\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08bbb180 for g_pad in \u001b[38;5;227mpmcola.c\u001b[0;36m:\u001b[38;5;192mkick_pm_cola\u001b[0;36m:\u001b[0;32m592\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:21\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08cbb190 for pp in \u001b[38;5;227mpmcola.c\u001b[0;36m:\u001b[38;5;192mkick_pm_cola\u001b[0;36m:\u001b[0;32m598\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:21\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]====|Kicking particles (using 32 cores) done.\n",
"[02:24:21\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]====|Drifting particles (using 32 cores)...\n",
"[02:24:21\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mndrift=16\u001b[00m\n",
"[02:24:21\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mnkick=16\u001b[00m\n",
"[02:24:21\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246maiDrift=0.810000\u001b[00m\n",
"[02:24:21\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246maKick=0.833750\u001b[00m\n",
"[02:24:21\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mafDrift=0.857500\u001b[00m\n",
"[02:24:21\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246malpha_p=0.074096\u001b[00m\n",
"[02:24:21\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246malpha_lpt_1=0.000000\u001b[00m\n",
"[02:24:21\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246malpha_lpt_2=0.000000\u001b[00m\n",
"[02:24:21\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246malpha_ext=0.000000\u001b[00m\n",
"[02:24:21\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Drift loop, direction 0...\n",
"[02:24:21\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Drift loop, direction 0 done.\n",
"[02:24:21\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Drift loop, direction 1...\n",
"[02:24:21\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Drift loop, direction 1 done.\n",
"[02:24:21\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Drift loop, direction 2...\n",
"[02:24:21\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Drift loop, direction 2 done.\n",
"[02:24:21\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]====|Drifting particles (using 32 cores) done.\n",
"[02:24:21\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]==|ModuleP3M: End sPM step 17/20, time_kick:0.833750, time_drift=0.857500.\n",
"[02:24:21\u001b[00m|\u001b[38;5;159mTIMER \u001b[00m]==|Step 17/20: Density: 0.347 CPU - 0.011 wallclock seconds used.\n",
"[02:24:21\u001b[00m|\u001b[38;5;159mTIMER \u001b[00m]==|Step 17/20: Potential: 1.003 CPU - 0.039 wallclock seconds used.\n",
"[02:24:21\u001b[00m|\u001b[38;5;159mTIMER \u001b[00m]==|Step 17/20: Accelerations (long-range): 1.228 CPU - 0.042 wallclock seconds used.\n",
"[02:24:21\u001b[00m|\u001b[38;5;159mTIMER \u001b[00m]==|Step 17/20: Accelerations (short-range): 0.380 CPU - 0.013 wallclock seconds used.\n",
"[02:24:21\u001b[00m|\u001b[38;5;159mTIMER \u001b[00m]==|Step 17/20: Kick: 1.164 CPU - 0.039 wallclock seconds used.\n",
"[02:24:21\u001b[00m|\u001b[38;5;159mTIMER \u001b[00m]==|Step 17/20: Drift: 2.277 CPU - 0.075 wallclock seconds used.\n",
"[02:24:21\u001b[00m|\u001b[38;5;159mTIMER \u001b[00m]==|Step 17/20: Inputs: 0.000 CPU - 0.000 wallclock seconds used.\n",
"[02:24:21\u001b[00m|\u001b[38;5;159mTIMER \u001b[00m]==|Step 17/20: Diagnostic: 0.000 CPU - 0.000 wallclock seconds used.\n",
"[02:24:21\u001b[00m|\u001b[38;5;159mTIMER \u001b[00m]==|Step 17/20: Outputs: 0.000 CPU - 0.000 wallclock seconds used.\n",
"[02:24:21\u001b[00m|\u001b[38;5;159mTIMER \u001b[00m]==|Step 17/20: Total Evolution: 6.400 CPU - 0.219 wallclock seconds used.\n",
"[02:24:21\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]==|ModuleP3M: Begin sPM step 18/20, time_kick:0.833750, time_drift=0.857500.\n",
"[02:24:21\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]====|\u001b[38;5;246mGiven the available memory, 4095 threads could be allocated and 32 threads will be used in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel\u001b[0;36m:\u001b[0;32m347\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:21\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]====|\u001b[38;5;246mGiven the available memory, 4095 threads could be allocated and 32 threads will be used in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m73\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:21\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]====|Getting density contrast (using 32 cores and 32 arrays, parallel routine 1)...\n",
"[02:24:21\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]======|\u001b[38;5;246mPerforming CiC binning...\u001b[00m\n",
"[02:24:21\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 0...\u001b[00m\n",
"[02:24:21\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148928000b60 for threadedDensity[20] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:21\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148950000b60 for threadedDensity[9] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:21\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 20...\u001b[00m\n",
"[02:24:21\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 9...\u001b[00m\n",
"[02:24:21\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148918000b60 for threadedDensity[15] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:21\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148968000b60 for threadedDensity[10] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:21\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 15...\u001b[00m\n",
"[02:24:21\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 10...\u001b[00m\n",
"[02:24:21\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1488d8000b60 for threadedDensity[29] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:21\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 29...\u001b[00m\n",
"[02:24:21\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148958000b60 for threadedDensity[22] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:21\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148960000b60 for threadedDensity[13] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:21\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 22...\u001b[00m\n",
"[02:24:21\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 13...\u001b[00m\n",
"[02:24:21\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148900000b60 for threadedDensity[16] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:21\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148930000b60 for threadedDensity[14] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:21\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148938000b60 for threadedDensity[18] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:21\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 14...\u001b[00m\n",
"[02:24:21\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 18...\u001b[00m\n",
"[02:24:21\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148948000b60 for threadedDensity[31] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:21\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 16...\u001b[00m\n",
"[02:24:21\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 31...\u001b[00m\n",
"[02:24:21\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1489b8000b60 for threadedDensity[4] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:21\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148940000b60 for threadedDensity[27] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:21\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 4...\u001b[00m\n",
"[02:24:21\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 27...\u001b[00m\n",
"[02:24:21\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148998000b60 for threadedDensity[25] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:21\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148920000b60 for threadedDensity[12] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:21\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 25...\u001b[00m\n",
"[02:24:21\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 12...\u001b[00m\n",
"[02:24:21\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1488e0000b60 for threadedDensity[6] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:21\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148910000b60 for threadedDensity[23] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:21\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148908000b60 for threadedDensity[8] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:21\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 23...\u001b[00m\n",
"[02:24:21\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 8...\u001b[00m\n",
"[02:24:21\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 6...\u001b[00m\n",
"[02:24:21\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1488dc000b60 for threadedDensity[17] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:21\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148978000b60 for threadedDensity[26] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:21\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 17...\u001b[00m\n",
"[02:24:21\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 26...\u001b[00m\n",
"[02:24:21\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148980000b60 for threadedDensity[11] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:21\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148988000b60 for threadedDensity[28] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:21\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1488f0000b60 for threadedDensity[24] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:21\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 28...\u001b[00m\n",
"[02:24:21\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 24...\u001b[00m\n",
"[02:24:21\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1488d0000b60 for threadedDensity[5] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:21\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 11...\u001b[00m\n",
"[02:24:21\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1489b0000b60 for threadedDensity[1] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:21\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 5...\u001b[00m\n",
"[02:24:21\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148990000b60 for threadedDensity[21] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:21\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1488f8000b60 for threadedDensity[19] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:21\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 21...\u001b[00m\n",
"[02:24:21\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 1...\u001b[00m\n",
"[02:24:21\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 19...\u001b[00m\n",
"[02:24:21\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1489a8000b60 for threadedDensity[30] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:21\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 30...\u001b[00m\n",
"[02:24:21\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1489a0000b60 for threadedDensity[3] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:21\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 3...\u001b[00m\n",
"[02:24:21\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1488e8000b60 for threadedDensity[2] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:21\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 2...\u001b[00m\n",
"[02:24:21\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148970000b60 for threadedDensity[7] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:21\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 7...\u001b[00m\n",
"[02:24:21\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 19 done.\u001b[00m\n",
"[02:24:21\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 6 done.\u001b[00m\n",
"[02:24:21\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 31 done.\u001b[00m\n",
"[02:24:21\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 16 done.\u001b[00m\n",
"[02:24:21\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 27 done.\u001b[00m\n",
"[02:24:21\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 4 done.\u001b[00m\n",
"[02:24:21\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 22 done.\u001b[00m\n",
"[02:24:21\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 13 done.\u001b[00m\n",
"[02:24:21\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 14 done.\u001b[00m\n",
"[02:24:21\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 18 done.\u001b[00m\n",
"[02:24:21\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 25 done.\u001b[00m\n",
"[02:24:21\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 12 done.\u001b[00m\n",
"[02:24:21\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 15 done.\u001b[00m\n",
"[02:24:21\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 10 done.\u001b[00m\n",
"[02:24:21\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 23 done.\u001b[00m\n",
"[02:24:21\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 8 done.\u001b[00m\n",
"[02:24:21\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 9 done.\u001b[00m\n",
"[02:24:21\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 20 done.\u001b[00m\n",
"[02:24:21\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 11 done.\u001b[00m\n",
"[02:24:21\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 30 done.\u001b[00m\n",
"[02:24:21\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 17 done.\u001b[00m\n",
"[02:24:21\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 26 done.\u001b[00m\n",
"[02:24:21\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 5 done.\u001b[00m\n",
"[02:24:21\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 2 done.\u001b[00m\n",
"[02:24:21\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 24 done.\u001b[00m\n",
"[02:24:21\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 28 done.\u001b[00m\n",
"[02:24:21\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 3 done.\u001b[00m\n",
"[02:24:21\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 21 done.\u001b[00m\n",
"[02:24:21\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 7 done.\u001b[00m\n",
"[02:24:21\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 1 done.\u001b[00m\n",
"[02:24:21\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 29 done.\u001b[00m\n",
"[02:24:21\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 0 done.\u001b[00m\n",
"[02:24:21\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]======|\u001b[38;5;246mPerforming CiC done.\u001b[00m\n",
"[02:24:21\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]======|\u001b[38;5;246mPerforming CiC reduction...\u001b[00m\n",
"[02:24:21\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x1489b0000b60 for threadedDensity[1] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:21\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x1488e8000b60 for threadedDensity[2] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:21\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x1489a0000b60 for threadedDensity[3] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:21\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x1489b8000b60 for threadedDensity[4] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:21\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x1488d0000b60 for threadedDensity[5] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:21\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x1488e0000b60 for threadedDensity[6] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:21\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148970000b60 for threadedDensity[7] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:21\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148908000b60 for threadedDensity[8] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:21\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148950000b60 for threadedDensity[9] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:21\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148968000b60 for threadedDensity[10] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:21\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148980000b60 for threadedDensity[11] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:21\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148920000b60 for threadedDensity[12] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:21\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148960000b60 for threadedDensity[13] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:21\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148930000b60 for threadedDensity[14] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:21\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148918000b60 for threadedDensity[15] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:21\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148900000b60 for threadedDensity[16] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:21\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x1488dc000b60 for threadedDensity[17] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:21\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148938000b60 for threadedDensity[18] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:21\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x1488f8000b60 for threadedDensity[19] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:21\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148928000b60 for threadedDensity[20] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:21\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148990000b60 for threadedDensity[21] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:21\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148958000b60 for threadedDensity[22] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:21\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148910000b60 for threadedDensity[23] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:21\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x1488f0000b60 for threadedDensity[24] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:21\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148998000b60 for threadedDensity[25] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:21\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148978000b60 for threadedDensity[26] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:21\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148940000b60 for threadedDensity[27] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:21\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148988000b60 for threadedDensity[28] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:21\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x1488d8000b60 for threadedDensity[29] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:21\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x1489a8000b60 for threadedDensity[30] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:21\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148948000b60 for threadedDensity[31] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:21\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]======|\u001b[38;5;246mPerforming CiC reduction done.\u001b[00m\n",
"[02:24:21\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]====|Getting density contrast (using 32 cores and 32 arrays, parallel routine 1) done.\n",
"[02:24:21\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]====|Getting gravitational potential, periodic boundary conditions (using 32 cores)...\n",
"[02:24:21\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated memory (1081344 bytes) at 0x55cb08bbb180 for AUX in \u001b[38;5;227mpoisson_solvers.c\u001b[0;36m:\u001b[38;5;192msolve_poisson_DFT\u001b[0;36m:\u001b[0;32m106\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:21\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08bbb180 for AUX in \u001b[38;5;227mpoisson_solvers.c\u001b[0;36m:\u001b[38;5;192msolve_poisson_DFT\u001b[0;36m:\u001b[0;32m116\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:21\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]====|Getting gravitational potential, periodic boundary conditions (using 32 cores) done.\n",
"[02:24:21\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]====|Kicking particles (using 32 cores)...\n",
"[02:24:21\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mnkick=17\u001b[00m\n",
"[02:24:21\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mndrift=17\u001b[00m\n",
"[02:24:21\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246maiKick=0.833750\u001b[00m\n",
"[02:24:21\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246maDrift=0.857500\u001b[00m\n",
"[02:24:21\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mafKick=0.881250\u001b[00m\n",
"[02:24:21\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mbeta_delta=-0.027732\u001b[00m\n",
"[02:24:21\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mbeta_lpt_1=0.000000\u001b[00m\n",
"[02:24:21\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mbeta_lpt_2=0.000000\u001b[00m\n",
"[02:24:21\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mbeta_ext=0.000000\u001b[00m\n",
"[02:24:21\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated memory (1048576 bytes) at 0x55cb08bbb180 for g_pad in \u001b[38;5;227mpmcola.c\u001b[0;36m:\u001b[38;5;192mkick_pm_cola\u001b[0;36m:\u001b[0;32m478\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:21\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated memory (393216 bytes) at 0x55cb08cbb190 for pp in \u001b[38;5;227mpmcola.c\u001b[0;36m:\u001b[38;5;192mkick_pm_cola\u001b[0;36m:\u001b[0;32m554\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:21\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Acceleration loop, direction 0...\n",
"[02:24:21\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Acceleration loop, direction 0 done.\n",
"[02:24:21\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Kick loop, direction 0...\n",
"[02:24:21\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Kick loop, direction 0 done.\n",
"[02:24:21\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Acceleration loop, direction 1...\n",
"[02:24:21\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Acceleration loop, direction 1 done.\n",
"[02:24:21\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Kick loop, direction 1...\n",
"[02:24:21\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Kick loop, direction 1 done.\n",
"[02:24:21\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Acceleration loop, direction 2...\n",
"[02:24:21\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Acceleration loop, direction 2 done.\n",
"[02:24:21\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Kick loop, direction 2...\n",
"[02:24:21\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Kick loop, direction 2 done.\n",
"[02:24:21\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08bbb180 for g_pad in \u001b[38;5;227mpmcola.c\u001b[0;36m:\u001b[38;5;192mkick_pm_cola\u001b[0;36m:\u001b[0;32m592\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:21\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08cbb190 for pp in \u001b[38;5;227mpmcola.c\u001b[0;36m:\u001b[38;5;192mkick_pm_cola\u001b[0;36m:\u001b[0;32m598\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:21\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]====|Kicking particles (using 32 cores) done.\n",
"[02:24:21\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]====|Drifting particles (using 32 cores)...\n",
"[02:24:21\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mndrift=17\u001b[00m\n",
"[02:24:21\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mnkick=17\u001b[00m\n",
"[02:24:21\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246maiDrift=0.857500\u001b[00m\n",
"[02:24:21\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246maKick=0.881250\u001b[00m\n",
"[02:24:21\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mafDrift=0.905000\u001b[00m\n",
"[02:24:21\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246malpha_p=0.064962\u001b[00m\n",
"[02:24:21\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246malpha_lpt_1=0.000000\u001b[00m\n",
"[02:24:21\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246malpha_lpt_2=0.000000\u001b[00m\n",
"[02:24:21\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246malpha_ext=0.000000\u001b[00m\n",
"[02:24:21\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Drift loop, direction 0...\n",
"[02:24:21\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Drift loop, direction 0 done.\n",
"[02:24:21\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Drift loop, direction 1...\n",
"[02:24:21\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Drift loop, direction 1 done.\n",
"[02:24:21\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Drift loop, direction 2...\n",
"[02:24:21\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Drift loop, direction 2 done.\n",
"[02:24:21\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]====|Drifting particles (using 32 cores) done.\n",
"[02:24:21\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]==|ModuleP3M: End sPM step 18/20, time_kick:0.881250, time_drift=0.905000.\n",
"[02:24:21\u001b[00m|\u001b[38;5;159mTIMER \u001b[00m]==|Step 18/20: Density: 3.381 CPU - 0.111 wallclock seconds used.\n",
"[02:24:21\u001b[00m|\u001b[38;5;159mTIMER \u001b[00m]==|Step 18/20: Potential: 0.812 CPU - 0.029 wallclock seconds used.\n",
"[02:24:21\u001b[00m|\u001b[38;5;159mTIMER \u001b[00m]==|Step 18/20: Accelerations (long-range): 1.214 CPU - 0.043 wallclock seconds used.\n",
"[02:24:21\u001b[00m|\u001b[38;5;159mTIMER \u001b[00m]==|Step 18/20: Accelerations (short-range): 0.376 CPU - 0.013 wallclock seconds used.\n",
"[02:24:21\u001b[00m|\u001b[38;5;159mTIMER \u001b[00m]==|Step 18/20: Kick: 0.768 CPU - 0.027 wallclock seconds used.\n",
"[02:24:21\u001b[00m|\u001b[38;5;159mTIMER \u001b[00m]==|Step 18/20: Drift: 0.000 CPU - 0.000 wallclock seconds used.\n",
"[02:24:21\u001b[00m|\u001b[38;5;159mTIMER \u001b[00m]==|Step 18/20: Inputs: 0.000 CPU - 0.000 wallclock seconds used.\n",
"[02:24:21\u001b[00m|\u001b[38;5;159mTIMER \u001b[00m]==|Step 18/20: Diagnostic: 0.000 CPU - 0.000 wallclock seconds used.\n",
"[02:24:21\u001b[00m|\u001b[38;5;159mTIMER \u001b[00m]==|Step 18/20: Outputs: 0.000 CPU - 0.000 wallclock seconds used.\n",
"[02:24:21\u001b[00m|\u001b[38;5;159mTIMER \u001b[00m]==|Step 18/20: Total Evolution: 6.552 CPU - 0.223 wallclock seconds used.\n",
"[02:24:21\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]==|ModuleP3M: Begin sPM step 19/20, time_kick:0.881250, time_drift=0.905000.\n",
"[02:24:21\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]====|\u001b[38;5;246mGiven the available memory, 4095 threads could be allocated and 32 threads will be used in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel\u001b[0;36m:\u001b[0;32m347\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:21\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]====|\u001b[38;5;246mGiven the available memory, 4095 threads could be allocated and 32 threads will be used in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m73\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:21\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]====|Getting density contrast (using 32 cores and 32 arrays, parallel routine 1)...\n",
"[02:24:21\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]======|\u001b[38;5;246mPerforming CiC binning...\u001b[00m\n",
"[02:24:21\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 0...\u001b[00m\n",
"[02:24:21\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148950000b60 for threadedDensity[9] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:21\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148928000b60 for threadedDensity[20] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:21\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 9...\u001b[00m\n",
"[02:24:21\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 20...\u001b[00m\n",
"[02:24:21\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1488f8000b60 for threadedDensity[19] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:21\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 19...\u001b[00m\n",
"[02:24:21\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148940000b60 for threadedDensity[27] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:21\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1488d8000b60 for threadedDensity[29] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:21\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1488e0000b60 for threadedDensity[6] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:21\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 29...\u001b[00m\n",
"[02:24:21\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 6...\u001b[00m\n",
"[02:24:21\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148958000b60 for threadedDensity[22] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:21\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148960000b60 for threadedDensity[13] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:21\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 22...\u001b[00m\n",
"[02:24:21\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 13...\u001b[00m\n",
"[02:24:21\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 27...\u001b[00m\n",
"[02:24:21\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148900000b60 for threadedDensity[16] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:21\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148948000b60 for threadedDensity[31] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:21\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 16...\u001b[00m\n",
"[02:24:21\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 31...\u001b[00m\n",
"[02:24:21\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1489b8000b60 for threadedDensity[4] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:21\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148998000b60 for threadedDensity[25] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:21\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148920000b60 for threadedDensity[12] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:21\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 25...\u001b[00m\n",
"[02:24:21\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 12...\u001b[00m\n",
"[02:24:21\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 4...\u001b[00m\n",
"[02:24:21\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148918000b60 for threadedDensity[15] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:21\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148968000b60 for threadedDensity[10] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:21\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 15...\u001b[00m\n",
"[02:24:21\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 10...\u001b[00m\n",
"[02:24:21\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148938000b60 for threadedDensity[18] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:21\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148930000b60 for threadedDensity[14] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:21\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 18...\u001b[00m\n",
"[02:24:21\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 14...\u001b[00m\n",
"[02:24:21\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148910000b60 for threadedDensity[23] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:21\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148908000b60 for threadedDensity[8] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:21\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 23...\u001b[00m\n",
"[02:24:21\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 8...\u001b[00m\n",
"[02:24:21\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1488d0000b60 for threadedDensity[5] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:21\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148980000b60 for threadedDensity[11] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:21\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148990000b60 for threadedDensity[21] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:21\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 11...\u001b[00m\n",
"[02:24:21\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148978000b60 for threadedDensity[26] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:21\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1488dc000b60 for threadedDensity[17] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:21\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 26...\u001b[00m\n",
"[02:24:21\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 17...\u001b[00m\n",
"[02:24:21\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 5...\u001b[00m\n",
"[02:24:21\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1489b0000b60 for threadedDensity[1] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:21\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148970000b60 for threadedDensity[7] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:21\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 1...\u001b[00m\n",
"[02:24:21\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 7...\u001b[00m\n",
"[02:24:21\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 21...\u001b[00m\n",
"[02:24:21\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1488f0000b60 for threadedDensity[24] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:21\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148988000b60 for threadedDensity[28] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:21\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 24...\u001b[00m\n",
"[02:24:21\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 28...\u001b[00m\n",
"[02:24:21\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1489a8000b60 for threadedDensity[30] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:21\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 30...\u001b[00m\n",
"[02:24:21\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1488e8000b60 for threadedDensity[2] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:21\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 2...\u001b[00m\n",
"[02:24:21\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1489a0000b60 for threadedDensity[3] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:21\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 3...\u001b[00m\n",
"[02:24:21\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 24 done.\u001b[00m\n",
"[02:24:21\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 28 done.\u001b[00m\n",
"[02:24:21\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 22 done.\u001b[00m\n",
"[02:24:21\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 13 done.\u001b[00m\n",
"[02:24:21\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 6 done.\u001b[00m\n",
"[02:24:21\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 29 done.\u001b[00m\n",
"[02:24:21\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 31 done.\u001b[00m\n",
"[02:24:21\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 16 done.\u001b[00m\n",
"[02:24:21\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 27 done.\u001b[00m\n",
"[02:24:21\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 4 done.\u001b[00m\n",
"[02:24:21\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 14 done.\u001b[00m\n",
"[02:24:21\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 18 done.\u001b[00m\n",
"[02:24:21\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 12 done.\u001b[00m\n",
"[02:24:21\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 25 done.\u001b[00m\n",
"[02:24:21\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 23 done.\u001b[00m\n",
"[02:24:21\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 8 done.\u001b[00m\n",
"[02:24:21\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 15 done.\u001b[00m\n",
"[02:24:21\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 10 done.\u001b[00m\n",
"[02:24:21\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 11 done.\u001b[00m\n",
"[02:24:21\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 30 done.\u001b[00m\n",
"[02:24:21\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 9 done.\u001b[00m\n",
"[02:24:21\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 20 done.\u001b[00m\n",
"[02:24:21\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 26 done.\u001b[00m\n",
"[02:24:21\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 17 done.\u001b[00m\n",
"[02:24:21\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 5 done.\u001b[00m\n",
"[02:24:21\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 2 done.\u001b[00m\n",
"[02:24:21\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 3 done.\u001b[00m\n",
"[02:24:21\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 21 done.\u001b[00m\n",
"[02:24:21\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 0 done.\u001b[00m\n",
"[02:24:21\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 19 done.\u001b[00m\n",
"[02:24:21\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 1 done.\u001b[00m\n",
"[02:24:21\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 7 done.\u001b[00m\n",
"[02:24:21\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]======|\u001b[38;5;246mPerforming CiC done.\u001b[00m\n",
"[02:24:21\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]======|\u001b[38;5;246mPerforming CiC reduction...\u001b[00m\n",
"[02:24:21\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x1489b0000b60 for threadedDensity[1] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:21\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x1488e8000b60 for threadedDensity[2] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:21\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x1489a0000b60 for threadedDensity[3] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:21\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x1489b8000b60 for threadedDensity[4] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:21\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x1488d0000b60 for threadedDensity[5] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:21\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x1488e0000b60 for threadedDensity[6] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:21\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148970000b60 for threadedDensity[7] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:21\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148908000b60 for threadedDensity[8] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:21\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148950000b60 for threadedDensity[9] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:21\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148968000b60 for threadedDensity[10] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:21\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148980000b60 for threadedDensity[11] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:21\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148920000b60 for threadedDensity[12] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:21\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148960000b60 for threadedDensity[13] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:21\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148930000b60 for threadedDensity[14] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:21\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148918000b60 for threadedDensity[15] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:21\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148900000b60 for threadedDensity[16] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:21\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x1488dc000b60 for threadedDensity[17] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:21\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148938000b60 for threadedDensity[18] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:21\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x1488f8000b60 for threadedDensity[19] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:21\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148928000b60 for threadedDensity[20] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:21\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148990000b60 for threadedDensity[21] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:21\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148958000b60 for threadedDensity[22] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:21\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148910000b60 for threadedDensity[23] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:21\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x1488f0000b60 for threadedDensity[24] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:21\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148998000b60 for threadedDensity[25] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:21\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148978000b60 for threadedDensity[26] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:21\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148940000b60 for threadedDensity[27] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:21\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148988000b60 for threadedDensity[28] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:21\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x1488d8000b60 for threadedDensity[29] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:21\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x1489a8000b60 for threadedDensity[30] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:21\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148948000b60 for threadedDensity[31] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:21\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]======|\u001b[38;5;246mPerforming CiC reduction done.\u001b[00m\n",
"[02:24:21\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]====|Getting density contrast (using 32 cores and 32 arrays, parallel routine 1) done.\n",
"[02:24:21\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]====|Getting gravitational potential, periodic boundary conditions (using 32 cores)...\n",
"[02:24:21\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated memory (1081344 bytes) at 0x55cb08bbb180 for AUX in \u001b[38;5;227mpoisson_solvers.c\u001b[0;36m:\u001b[38;5;192msolve_poisson_DFT\u001b[0;36m:\u001b[0;32m106\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:21\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08bbb180 for AUX in \u001b[38;5;227mpoisson_solvers.c\u001b[0;36m:\u001b[38;5;192msolve_poisson_DFT\u001b[0;36m:\u001b[0;32m116\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:21\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]====|Getting gravitational potential, periodic boundary conditions (using 32 cores) done.\n",
"[02:24:21\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]====|Kicking particles (using 32 cores)...\n",
"[02:24:21\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mnkick=18\u001b[00m\n",
"[02:24:21\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mndrift=18\u001b[00m\n",
"[02:24:21\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246maiKick=0.881250\u001b[00m\n",
"[02:24:21\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246maDrift=0.905000\u001b[00m\n",
"[02:24:21\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mafKick=0.928750\u001b[00m\n",
"[02:24:21\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mbeta_delta=-0.025711\u001b[00m\n",
"[02:24:21\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mbeta_lpt_1=0.000000\u001b[00m\n",
"[02:24:21\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mbeta_lpt_2=0.000000\u001b[00m\n",
"[02:24:21\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mbeta_ext=0.000000\u001b[00m\n",
"[02:24:21\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated memory (1048576 bytes) at 0x55cb08bbb180 for g_pad in \u001b[38;5;227mpmcola.c\u001b[0;36m:\u001b[38;5;192mkick_pm_cola\u001b[0;36m:\u001b[0;32m478\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:21\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated memory (393216 bytes) at 0x55cb08cbb190 for pp in \u001b[38;5;227mpmcola.c\u001b[0;36m:\u001b[38;5;192mkick_pm_cola\u001b[0;36m:\u001b[0;32m554\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:21\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Acceleration loop, direction 0...\n",
"[02:24:21\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Acceleration loop, direction 0 done.\n",
"[02:24:21\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Kick loop, direction 0...\n",
"[02:24:21\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Kick loop, direction 0 done.\n",
"[02:24:21\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Acceleration loop, direction 1...\n",
"[02:24:21\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Acceleration loop, direction 1 done.\n",
"[02:24:21\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Kick loop, direction 1...\n",
"[02:24:21\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Kick loop, direction 1 done.\n",
"[02:24:21\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Acceleration loop, direction 2...\n",
"[02:24:21\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Acceleration loop, direction 2 done.\n",
"[02:24:21\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Kick loop, direction 2...\n",
"[02:24:21\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Kick loop, direction 2 done.\n",
"[02:24:21\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08bbb180 for g_pad in \u001b[38;5;227mpmcola.c\u001b[0;36m:\u001b[38;5;192mkick_pm_cola\u001b[0;36m:\u001b[0;32m592\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:21\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08cbb190 for pp in \u001b[38;5;227mpmcola.c\u001b[0;36m:\u001b[38;5;192mkick_pm_cola\u001b[0;36m:\u001b[0;32m598\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:21\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]====|Kicking particles (using 32 cores) done.\n",
"[02:24:21\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]====|Drifting particles (using 32 cores)...\n",
"[02:24:21\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mndrift=18\u001b[00m\n",
"[02:24:21\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mnkick=18\u001b[00m\n",
"[02:24:21\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246maiDrift=0.905000\u001b[00m\n",
"[02:24:21\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246maKick=0.928750\u001b[00m\n",
"[02:24:21\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mafDrift=0.952500\u001b[00m\n",
"[02:24:21\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246malpha_p=0.057174\u001b[00m\n",
"[02:24:21\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246malpha_lpt_1=0.000000\u001b[00m\n",
"[02:24:21\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246malpha_lpt_2=0.000000\u001b[00m\n",
"[02:24:21\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246malpha_ext=0.000000\u001b[00m\n",
"[02:24:21\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Drift loop, direction 0...\n",
"[02:24:21\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Drift loop, direction 0 done.\n",
"[02:24:21\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Drift loop, direction 1...\n",
"[02:24:21\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Drift loop, direction 1 done.\n",
"[02:24:21\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Drift loop, direction 2...\n",
"[02:24:21\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Drift loop, direction 2 done.\n",
"[02:24:21\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]====|Drifting particles (using 32 cores) done.\n",
"[02:24:21\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]==|ModuleP3M: End sPM step 19/20, time_kick:0.928750, time_drift=0.952500.\n",
"[02:24:21\u001b[00m|\u001b[38;5;159mTIMER \u001b[00m]==|Step 19/20: Density: 0.349 CPU - 0.011 wallclock seconds used.\n",
"[02:24:21\u001b[00m|\u001b[38;5;159mTIMER \u001b[00m]==|Step 19/20: Potential: 1.007 CPU - 0.041 wallclock seconds used.\n",
"[02:24:21\u001b[00m|\u001b[38;5;159mTIMER \u001b[00m]==|Step 19/20: Accelerations (long-range): 1.055 CPU - 0.038 wallclock seconds used.\n",
"[02:24:21\u001b[00m|\u001b[38;5;159mTIMER \u001b[00m]==|Step 19/20: Accelerations (short-range): 0.378 CPU - 0.012 wallclock seconds used.\n",
"[02:24:21\u001b[00m|\u001b[38;5;159mTIMER \u001b[00m]==|Step 19/20: Kick: 1.164 CPU - 0.039 wallclock seconds used.\n",
"[02:24:21\u001b[00m|\u001b[38;5;159mTIMER \u001b[00m]==|Step 19/20: Drift: 2.276 CPU - 0.074 wallclock seconds used.\n",
"[02:24:21\u001b[00m|\u001b[38;5;159mTIMER \u001b[00m]==|Step 19/20: Inputs: 0.000 CPU - 0.000 wallclock seconds used.\n",
"[02:24:21\u001b[00m|\u001b[38;5;159mTIMER \u001b[00m]==|Step 19/20: Diagnostic: 0.000 CPU - 0.000 wallclock seconds used.\n",
"[02:24:21\u001b[00m|\u001b[38;5;159mTIMER \u001b[00m]==|Step 19/20: Outputs: 0.000 CPU - 0.000 wallclock seconds used.\n",
"[02:24:21\u001b[00m|\u001b[38;5;159mTIMER \u001b[00m]==|Step 19/20: Total Evolution: 6.229 CPU - 0.216 wallclock seconds used.\n",
"[02:24:21\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]==|ModuleP3M: Begin sPM step 20/20, time_kick:0.928750, time_drift=0.952500.\n",
"[02:24:21\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]====|\u001b[38;5;246mGiven the available memory, 4095 threads could be allocated and 32 threads will be used in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel\u001b[0;36m:\u001b[0;32m347\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:21\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]====|\u001b[38;5;246mGiven the available memory, 4095 threads could be allocated and 32 threads will be used in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m73\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:21\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]====|Getting density contrast (using 32 cores and 32 arrays, parallel routine 1)...\n",
"[02:24:21\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]======|\u001b[38;5;246mPerforming CiC binning...\u001b[00m\n",
"[02:24:21\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 0...\u001b[00m\n",
"[02:24:21\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1488f8000b60 for threadedDensity[19] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:21\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 19...\u001b[00m\n",
"[02:24:21\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148968000b60 for threadedDensity[10] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:21\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148940000b60 for threadedDensity[27] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:21\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 10...\u001b[00m\n",
"[02:24:21\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148918000b60 for threadedDensity[15] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:21\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 27...\u001b[00m\n",
"[02:24:21\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1488d8000b60 for threadedDensity[29] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:21\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1488e0000b60 for threadedDensity[6] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:21\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 29...\u001b[00m\n",
"[02:24:21\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 6...\u001b[00m\n",
"[02:24:21\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148960000b60 for threadedDensity[13] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:21\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 13...\u001b[00m\n",
"[02:24:21\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148958000b60 for threadedDensity[22] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:21\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148900000b60 for threadedDensity[16] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:21\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 22...\u001b[00m\n",
"[02:24:21\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 16...\u001b[00m\n",
"[02:24:21\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148948000b60 for threadedDensity[31] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:21\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 31...\u001b[00m\n",
"[02:24:21\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148930000b60 for threadedDensity[14] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:21\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148938000b60 for threadedDensity[18] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:21\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 14...\u001b[00m\n",
"[02:24:21\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 18...\u001b[00m\n",
"[02:24:21\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1489b8000b60 for threadedDensity[4] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:21\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148998000b60 for threadedDensity[25] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:21\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148920000b60 for threadedDensity[12] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:21\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 25...\u001b[00m\n",
"[02:24:21\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 12...\u001b[00m\n",
"[02:24:21\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 4...\u001b[00m\n",
"[02:24:21\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148910000b60 for threadedDensity[23] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:21\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148908000b60 for threadedDensity[8] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:21\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 23...\u001b[00m\n",
"[02:24:21\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 8...\u001b[00m\n",
"[02:24:21\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 15...\u001b[00m\n",
"[02:24:21\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148928000b60 for threadedDensity[20] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:21\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148980000b60 for threadedDensity[11] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:21\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 20...\u001b[00m\n",
"[02:24:21\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 11...\u001b[00m\n",
"[02:24:21\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1488f0000b60 for threadedDensity[24] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:21\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148988000b60 for threadedDensity[28] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:21\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 24...\u001b[00m\n",
"[02:24:21\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 28...\u001b[00m\n",
"[02:24:21\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1488dc000b60 for threadedDensity[17] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:21\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148978000b60 for threadedDensity[26] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:21\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 17...\u001b[00m\n",
"[02:24:21\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 26...\u001b[00m\n",
"[02:24:21\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148990000b60 for threadedDensity[21] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:21\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1488d0000b60 for threadedDensity[5] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:21\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 21...\u001b[00m\n",
"[02:24:21\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1489b0000b60 for threadedDensity[1] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:21\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148970000b60 for threadedDensity[7] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:21\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 1...\u001b[00m\n",
"[02:24:21\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 7...\u001b[00m\n",
"[02:24:21\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 5...\u001b[00m\n",
"[02:24:21\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1489a8000b60 for threadedDensity[30] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:21\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 30...\u001b[00m\n",
"[02:24:21\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1488e8000b60 for threadedDensity[2] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:21\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 2...\u001b[00m\n",
"[02:24:21\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1489a0000b60 for threadedDensity[3] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:21\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 3...\u001b[00m\n",
"[02:24:21\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148950000b60 for threadedDensity[9] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:21\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 9...\u001b[00m\n",
"[02:24:21\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 28 done.\u001b[00m\n",
"[02:24:21\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 24 done.\u001b[00m\n",
"[02:24:21\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 29 done.\u001b[00m\n",
"[02:24:21\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 6 done.\u001b[00m\n",
"[02:24:21\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 27 done.\u001b[00m\n",
"[02:24:21\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 4 done.\u001b[00m\n",
"[02:24:21\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 13 done.\u001b[00m\n",
"[02:24:21\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 22 done.\u001b[00m\n",
"[02:24:21\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 16 done.\u001b[00m\n",
"[02:24:21\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 31 done.\u001b[00m\n",
"[02:24:21\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 14 done.\u001b[00m\n",
"[02:24:21\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 18 done.\u001b[00m\n",
"[02:24:21\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 23 done.\u001b[00m\n",
"[02:24:21\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 8 done.\u001b[00m\n",
"[02:24:21\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 12 done.\u001b[00m\n",
"[02:24:21\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 15 done.\u001b[00m\n",
"[02:24:21\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 10 done.\u001b[00m\n",
"[02:24:21\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 30 done.\u001b[00m\n",
"[02:24:21\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 11 done.\u001b[00m\n",
"[02:24:21\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 9 done.\u001b[00m\n",
"[02:24:21\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 0 done.\u001b[00m\n",
"[02:24:21\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 21 done.\u001b[00m\n",
"[02:24:21\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 3 done.\u001b[00m\n",
"[02:24:21\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 2 done.\u001b[00m\n",
"[02:24:21\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 5 done.\u001b[00m\n",
"[02:24:21\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 17 done.\u001b[00m\n",
"[02:24:21\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 26 done.\u001b[00m\n",
"[02:24:21\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 7 done.\u001b[00m\n",
"[02:24:21\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 1 done.\u001b[00m\n",
"[02:24:21\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 19 done.\u001b[00m\n",
"[02:24:21\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 25 done.\u001b[00m\n",
"[02:24:21\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 20 done.\u001b[00m\n",
"[02:24:21\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]======|\u001b[38;5;246mPerforming CiC done.\u001b[00m\n",
"[02:24:21\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]======|\u001b[38;5;246mPerforming CiC reduction...\u001b[00m\n",
"[02:24:21\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x1489b0000b60 for threadedDensity[1] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:21\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x1488e8000b60 for threadedDensity[2] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:21\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x1489a0000b60 for threadedDensity[3] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:21\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x1489b8000b60 for threadedDensity[4] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:21\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x1488d0000b60 for threadedDensity[5] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:21\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x1488e0000b60 for threadedDensity[6] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:21\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148970000b60 for threadedDensity[7] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:21\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148908000b60 for threadedDensity[8] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:21\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148950000b60 for threadedDensity[9] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:21\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148968000b60 for threadedDensity[10] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:21\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148980000b60 for threadedDensity[11] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:21\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148920000b60 for threadedDensity[12] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:21\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148960000b60 for threadedDensity[13] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:21\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148930000b60 for threadedDensity[14] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:21\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148918000b60 for threadedDensity[15] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:21\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148900000b60 for threadedDensity[16] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:21\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x1488dc000b60 for threadedDensity[17] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:21\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148938000b60 for threadedDensity[18] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:21\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x1488f8000b60 for threadedDensity[19] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:21\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148928000b60 for threadedDensity[20] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:21\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148990000b60 for threadedDensity[21] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:21\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148958000b60 for threadedDensity[22] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:21\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148910000b60 for threadedDensity[23] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:21\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x1488f0000b60 for threadedDensity[24] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:21\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148998000b60 for threadedDensity[25] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:21\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148978000b60 for threadedDensity[26] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:21\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148940000b60 for threadedDensity[27] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:21\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148988000b60 for threadedDensity[28] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:21\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x1488d8000b60 for threadedDensity[29] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:21\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x1489a8000b60 for threadedDensity[30] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:21\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148948000b60 for threadedDensity[31] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:21\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]======|\u001b[38;5;246mPerforming CiC reduction done.\u001b[00m\n",
"[02:24:21\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]====|Getting density contrast (using 32 cores and 32 arrays, parallel routine 1) done.\n",
"[02:24:21\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]====|Getting gravitational potential, periodic boundary conditions (using 32 cores)...\n",
"[02:24:21\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated memory (1081344 bytes) at 0x55cb08bbb180 for AUX in \u001b[38;5;227mpoisson_solvers.c\u001b[0;36m:\u001b[38;5;192msolve_poisson_DFT\u001b[0;36m:\u001b[0;32m106\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:21\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08bbb180 for AUX in \u001b[38;5;227mpoisson_solvers.c\u001b[0;36m:\u001b[38;5;192msolve_poisson_DFT\u001b[0;36m:\u001b[0;32m116\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:21\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]====|Getting gravitational potential, periodic boundary conditions (using 32 cores) done.\n",
"[02:24:21\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]====|Kicking particles (using 32 cores)...\n",
"[02:24:21\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mnkick=19\u001b[00m\n",
"[02:24:21\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mndrift=19\u001b[00m\n",
"[02:24:21\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246maiKick=0.928750\u001b[00m\n",
"[02:24:21\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246maDrift=0.952500\u001b[00m\n",
"[02:24:21\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mafKick=0.976250\u001b[00m\n",
"[02:24:21\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mbeta_delta=-0.023862\u001b[00m\n",
"[02:24:21\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mbeta_lpt_1=0.000000\u001b[00m\n",
"[02:24:21\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mbeta_lpt_2=0.000000\u001b[00m\n",
"[02:24:21\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mbeta_ext=0.000000\u001b[00m\n",
"[02:24:21\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated memory (1048576 bytes) at 0x55cb08bbb180 for g_pad in \u001b[38;5;227mpmcola.c\u001b[0;36m:\u001b[38;5;192mkick_pm_cola\u001b[0;36m:\u001b[0;32m478\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:21\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated memory (393216 bytes) at 0x55cb08cbb190 for pp in \u001b[38;5;227mpmcola.c\u001b[0;36m:\u001b[38;5;192mkick_pm_cola\u001b[0;36m:\u001b[0;32m554\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:21\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Acceleration loop, direction 0...\n",
"[02:24:21\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Acceleration loop, direction 0 done.\n",
"[02:24:21\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Kick loop, direction 0...\n",
"[02:24:22\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Kick loop, direction 0 done.\n",
"[02:24:22\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Acceleration loop, direction 1...\n",
"[02:24:22\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Acceleration loop, direction 1 done.\n",
"[02:24:22\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Kick loop, direction 1...\n",
"[02:24:22\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Kick loop, direction 1 done.\n",
"[02:24:22\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Acceleration loop, direction 2...\n",
"[02:24:22\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Acceleration loop, direction 2 done.\n",
"[02:24:22\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Kick loop, direction 2...\n",
"[02:24:22\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Kick loop, direction 2 done.\n",
"[02:24:22\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08bbb180 for g_pad in \u001b[38;5;227mpmcola.c\u001b[0;36m:\u001b[38;5;192mkick_pm_cola\u001b[0;36m:\u001b[0;32m592\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:22\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08cbb190 for pp in \u001b[38;5;227mpmcola.c\u001b[0;36m:\u001b[38;5;192mkick_pm_cola\u001b[0;36m:\u001b[0;32m598\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:22\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]====|Kicking particles (using 32 cores) done.\n",
"[02:24:22\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]====|Drifting particles (using 32 cores)...\n",
"[02:24:22\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mndrift=19\u001b[00m\n",
"[02:24:22\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mnkick=19\u001b[00m\n",
"[02:24:22\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246maiDrift=0.952500\u001b[00m\n",
"[02:24:22\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246maKick=0.976250\u001b[00m\n",
"[02:24:22\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mafDrift=1.000000\u001b[00m\n",
"[02:24:22\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246malpha_p=0.050507\u001b[00m\n",
"[02:24:22\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246malpha_lpt_1=0.000000\u001b[00m\n",
"[02:24:22\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246malpha_lpt_2=0.000000\u001b[00m\n",
"[02:24:22\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246malpha_ext=0.000000\u001b[00m\n",
"[02:24:22\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Drift loop, direction 0...\n",
"[02:24:22\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Drift loop, direction 0 done.\n",
"[02:24:22\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Drift loop, direction 1...\n",
"[02:24:22\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Drift loop, direction 1 done.\n",
"[02:24:22\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Drift loop, direction 2...\n",
"[02:24:22\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Drift loop, direction 2 done.\n",
"[02:24:22\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]====|Drifting particles (using 32 cores) done.\n",
"[02:24:22\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]====|\u001b[38;5;246mGiven the available memory, 4095 threads could be allocated and 32 threads will be used in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel\u001b[0;36m:\u001b[0;32m347\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:22\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]====|\u001b[38;5;246mGiven the available memory, 4095 threads could be allocated and 32 threads will be used in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m73\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:22\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]====|Getting density contrast (using 32 cores and 32 arrays, parallel routine 1)...\n",
"[02:24:22\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]======|\u001b[38;5;246mPerforming CiC binning...\u001b[00m\n",
"[02:24:22\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 0...\u001b[00m\n",
"[02:24:22\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1488f8000b60 for threadedDensity[19] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:22\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 19...\u001b[00m\n",
"[02:24:22\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148950000b60 for threadedDensity[9] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:22\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148928000b60 for threadedDensity[20] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:22\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 9...\u001b[00m\n",
"[02:24:22\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 20...\u001b[00m\n",
"[02:24:22\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1488e0000b60 for threadedDensity[6] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:22\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1488d8000b60 for threadedDensity[29] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:22\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 6...\u001b[00m\n",
"[02:24:22\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 29...\u001b[00m\n",
"[02:24:22\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148940000b60 for threadedDensity[27] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:22\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148960000b60 for threadedDensity[13] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:22\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 27...\u001b[00m\n",
"[02:24:22\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 13...\u001b[00m\n",
"[02:24:22\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148900000b60 for threadedDensity[16] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:22\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148930000b60 for threadedDensity[14] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:22\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148938000b60 for threadedDensity[18] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:22\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 14...\u001b[00m\n",
"[02:24:22\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 18...\u001b[00m\n",
"[02:24:22\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 16...\u001b[00m\n",
"[02:24:22\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148998000b60 for threadedDensity[25] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:22\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148920000b60 for threadedDensity[12] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:22\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 25...\u001b[00m\n",
"[02:24:22\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 12...\u001b[00m\n",
"[02:24:22\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1489b8000b60 for threadedDensity[4] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:22\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148910000b60 for threadedDensity[23] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:22\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148908000b60 for threadedDensity[8] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:22\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 23...\u001b[00m\n",
"[02:24:22\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 8...\u001b[00m\n",
"[02:24:22\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 4...\u001b[00m\n",
"[02:24:22\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148918000b60 for threadedDensity[15] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:22\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148968000b60 for threadedDensity[10] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:22\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 15...\u001b[00m\n",
"[02:24:22\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 10...\u001b[00m\n",
"[02:24:22\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148980000b60 for threadedDensity[11] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:22\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148948000b60 for threadedDensity[31] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:22\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 11...\u001b[00m\n",
"[02:24:22\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 31...\u001b[00m\n",
"[02:24:22\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1488d0000b60 for threadedDensity[5] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:22\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1488e8000b60 for threadedDensity[2] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:22\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 5...\u001b[00m\n",
"[02:24:22\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 2...\u001b[00m\n",
"[02:24:22\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148978000b60 for threadedDensity[26] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:22\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1488dc000b60 for threadedDensity[17] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:22\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 26...\u001b[00m\n",
"[02:24:22\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 17...\u001b[00m\n",
"[02:24:22\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148990000b60 for threadedDensity[21] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:22\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148988000b60 for threadedDensity[28] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:22\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1488f0000b60 for threadedDensity[24] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:22\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 28...\u001b[00m\n",
"[02:24:22\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 24...\u001b[00m\n",
"[02:24:22\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148970000b60 for threadedDensity[7] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:22\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1489b0000b60 for threadedDensity[1] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:22\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 7...\u001b[00m\n",
"[02:24:22\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 1...\u001b[00m\n",
"[02:24:22\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 21...\u001b[00m\n",
"[02:24:22\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1489a8000b60 for threadedDensity[30] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:22\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 30...\u001b[00m\n",
"[02:24:22\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1489a0000b60 for threadedDensity[3] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:22\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 3...\u001b[00m\n",
"[02:24:22\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148958000b60 for threadedDensity[22] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:22\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 22...\u001b[00m\n",
"[02:24:22\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 13 done.\u001b[00m\n",
"[02:24:22\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 22 done.\u001b[00m\n",
"[02:24:22\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 6 done.\u001b[00m\n",
"[02:24:22\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 29 done.\u001b[00m\n",
"[02:24:22\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 16 done.\u001b[00m\n",
"[02:24:22\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 4 done.\u001b[00m\n",
"[02:24:22\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 27 done.\u001b[00m\n",
"[02:24:22\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 18 done.\u001b[00m\n",
"[02:24:22\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 14 done.\u001b[00m\n",
"[02:24:22\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 12 done.\u001b[00m\n",
"[02:24:22\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 25 done.\u001b[00m\n",
"[02:24:22\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 23 done.\u001b[00m\n",
"[02:24:22\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 8 done.\u001b[00m\n",
"[02:24:22\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 15 done.\u001b[00m\n",
"[02:24:22\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 10 done.\u001b[00m\n",
"[02:24:22\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 9 done.\u001b[00m\n",
"[02:24:22\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 20 done.\u001b[00m\n",
"[02:24:22\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 5 done.\u001b[00m\n",
"[02:24:22\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 2 done.\u001b[00m\n",
"[02:24:22\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 11 done.\u001b[00m\n",
"[02:24:22\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 31 done.\u001b[00m\n",
"[02:24:22\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 17 done.\u001b[00m\n",
"[02:24:22\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 26 done.\u001b[00m\n",
"[02:24:22\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 28 done.\u001b[00m\n",
"[02:24:22\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 24 done.\u001b[00m\n",
"[02:24:22\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 3 done.\u001b[00m\n",
"[02:24:22\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 21 done.\u001b[00m\n",
"[02:24:22\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 7 done.\u001b[00m\n",
"[02:24:22\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 1 done.\u001b[00m\n",
"[02:24:22\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 19 done.\u001b[00m\n",
"[02:24:22\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 30 done.\u001b[00m\n",
"[02:24:22\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 0 done.\u001b[00m\n",
"[02:24:22\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]======|\u001b[38;5;246mPerforming CiC done.\u001b[00m\n",
"[02:24:22\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]======|\u001b[38;5;246mPerforming CiC reduction...\u001b[00m\n",
"[02:24:22\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x1489b0000b60 for threadedDensity[1] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:22\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x1488e8000b60 for threadedDensity[2] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:22\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x1489a0000b60 for threadedDensity[3] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:22\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x1489b8000b60 for threadedDensity[4] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:22\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x1488d0000b60 for threadedDensity[5] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:22\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x1488e0000b60 for threadedDensity[6] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:22\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148970000b60 for threadedDensity[7] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:22\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148908000b60 for threadedDensity[8] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:22\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148950000b60 for threadedDensity[9] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:22\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148968000b60 for threadedDensity[10] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:22\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148980000b60 for threadedDensity[11] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:22\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148920000b60 for threadedDensity[12] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:22\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148960000b60 for threadedDensity[13] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:22\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148930000b60 for threadedDensity[14] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:22\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148918000b60 for threadedDensity[15] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:22\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148900000b60 for threadedDensity[16] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:22\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x1488dc000b60 for threadedDensity[17] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:22\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148938000b60 for threadedDensity[18] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:22\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x1488f8000b60 for threadedDensity[19] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:22\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148928000b60 for threadedDensity[20] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:22\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148990000b60 for threadedDensity[21] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:22\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148958000b60 for threadedDensity[22] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:22\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148910000b60 for threadedDensity[23] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:22\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x1488f0000b60 for threadedDensity[24] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:22\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148998000b60 for threadedDensity[25] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:22\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148978000b60 for threadedDensity[26] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:22\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148940000b60 for threadedDensity[27] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:22\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148988000b60 for threadedDensity[28] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:22\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x1488d8000b60 for threadedDensity[29] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:22\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x1489a8000b60 for threadedDensity[30] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:22\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148948000b60 for threadedDensity[31] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:22\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]======|\u001b[38;5;246mPerforming CiC reduction done.\u001b[00m\n",
"[02:24:22\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]====|Getting density contrast (using 32 cores and 32 arrays, parallel routine 1) done.\n",
"[02:24:22\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]====|Getting gravitational potential, periodic boundary conditions (using 32 cores)...\n",
"[02:24:22\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated memory (1081344 bytes) at 0x55cb08bbb180 for AUX in \u001b[38;5;227mpoisson_solvers.c\u001b[0;36m:\u001b[38;5;192msolve_poisson_DFT\u001b[0;36m:\u001b[0;32m106\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:22\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08bbb180 for AUX in \u001b[38;5;227mpoisson_solvers.c\u001b[0;36m:\u001b[38;5;192msolve_poisson_DFT\u001b[0;36m:\u001b[0;32m116\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:22\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]====|Getting gravitational potential, periodic boundary conditions (using 32 cores) done.\n",
"[02:24:22\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]====|Kicking particles (using 32 cores)...\n",
"[02:24:22\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mnkick=20\u001b[00m\n",
"[02:24:22\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mndrift=20\u001b[00m\n",
"[02:24:22\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246maiKick=0.976250\u001b[00m\n",
"[02:24:22\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246maDrift=1.000000\u001b[00m\n",
"[02:24:22\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mafKick=1.000000\u001b[00m\n",
"[02:24:22\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mbeta_delta=-0.011288\u001b[00m\n",
"[02:24:22\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mbeta_lpt_1=0.000000\u001b[00m\n",
"[02:24:22\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mbeta_lpt_2=0.000000\u001b[00m\n",
"[02:24:22\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mbeta_ext=0.000000\u001b[00m\n",
"[02:24:22\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated memory (1048576 bytes) at 0x55cb08bbb180 for g_pad in \u001b[38;5;227mpmcola.c\u001b[0;36m:\u001b[38;5;192mkick_pm_cola\u001b[0;36m:\u001b[0;32m478\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:22\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated memory (393216 bytes) at 0x55cb08cbb190 for pp in \u001b[38;5;227mpmcola.c\u001b[0;36m:\u001b[38;5;192mkick_pm_cola\u001b[0;36m:\u001b[0;32m554\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:22\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Acceleration loop, direction 0...\n",
"[02:24:22\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Acceleration loop, direction 0 done.\n",
"[02:24:22\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Kick loop, direction 0...\n",
"[02:24:22\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Kick loop, direction 0 done.\n",
"[02:24:22\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Acceleration loop, direction 1...\n",
"[02:24:22\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Acceleration loop, direction 1 done.\n",
"[02:24:22\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Kick loop, direction 1...\n",
"[02:24:22\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Kick loop, direction 1 done.\n",
"[02:24:22\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Acceleration loop, direction 2...\n",
"[02:24:22\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Acceleration loop, direction 2 done.\n",
"[02:24:22\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Kick loop, direction 2...\n",
"[02:24:22\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Kick loop, direction 2 done.\n",
"[02:24:22\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08bbb180 for g_pad in \u001b[38;5;227mpmcola.c\u001b[0;36m:\u001b[38;5;192mkick_pm_cola\u001b[0;36m:\u001b[0;32m592\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:22\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08cbb190 for pp in \u001b[38;5;227mpmcola.c\u001b[0;36m:\u001b[38;5;192mkick_pm_cola\u001b[0;36m:\u001b[0;32m598\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:22\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]====|Kicking particles (using 32 cores) done.\n",
"[02:24:22\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]======|\u001b[38;5;246mafKick[nkick-1]=1.000000\u001b[00m\n",
"[02:24:22\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]======|\u001b[38;5;246mafDrift[ndrift-1]=1.000000\u001b[00m\n",
"[02:24:22\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]======|\u001b[38;5;246maKickEnd[step]=1.000000\u001b[00m\n",
"[02:24:22\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]======|\u001b[38;5;246maDriftEnd[step]=1.000000\u001b[00m\n",
"[02:24:22\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]==|ModuleP3M: End sPM step 20/20, time_kick:1.000000, time_drift=1.000000.\n",
"[02:24:22\u001b[00m|\u001b[38;5;159mTIMER \u001b[00m]==|Step 20/20: Density: 14.444 CPU - 0.474 wallclock seconds used.\n",
"[02:24:22\u001b[00m|\u001b[38;5;159mTIMER \u001b[00m]==|Step 20/20: Potential: 1.327 CPU - 0.053 wallclock seconds used.\n",
"[02:24:22\u001b[00m|\u001b[38;5;159mTIMER \u001b[00m]==|Step 20/20: Accelerations (long-range): 1.314 CPU - 0.048 wallclock seconds used.\n",
"[02:24:22\u001b[00m|\u001b[38;5;159mTIMER \u001b[00m]==|Step 20/20: Accelerations (short-range): 0.373 CPU - 0.013 wallclock seconds used.\n",
"[02:24:22\u001b[00m|\u001b[38;5;159mTIMER \u001b[00m]==|Step 20/20: Kick: 1.160 CPU - 0.040 wallclock seconds used.\n",
"[02:24:22\u001b[00m|\u001b[38;5;159mTIMER \u001b[00m]==|Step 20/20: Drift: 2.231 CPU - 0.075 wallclock seconds used.\n",
"[02:24:22\u001b[00m|\u001b[38;5;159mTIMER \u001b[00m]==|Step 20/20: Inputs: 0.000 CPU - 0.000 wallclock seconds used.\n",
"[02:24:22\u001b[00m|\u001b[38;5;159mTIMER \u001b[00m]==|Step 20/20: Diagnostic: 0.000 CPU - 0.000 wallclock seconds used.\n",
"[02:24:22\u001b[00m|\u001b[38;5;159mTIMER \u001b[00m]==|Step 20/20: Outputs: 0.000 CPU - 0.000 wallclock seconds used.\n",
"[02:24:22\u001b[00m|\u001b[38;5;159mTIMER \u001b[00m]==|Step 20/20: Total Evolution: 20.849 CPU - 0.702 wallclock seconds used.\n",
"[02:24:22\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]==|ModuleP3M: Running force diagnostic for 3 random particle pairs per distance bin...\n",
"[02:24:22\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]====|Computing total force on each particle (before removing any)...\n",
"[02:24:22\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated memory (393216 bytes) at 0x55cb08bbb180 for f_before_all in \u001b[38;5;227mdiagnostic.c\u001b[0;36m:\u001b[38;5;192mrun_force_diagnostic\u001b[0;36m:\u001b[0;32m112\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:22\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mGiven the available memory, 4095 threads could be allocated and 32 threads will be used in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel\u001b[0;36m:\u001b[0;32m347\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:22\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mGiven the available memory, 4095 threads could be allocated and 32 threads will be used in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m73\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:22\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Getting density contrast (using 32 cores and 32 arrays, parallel routine 1)...\n",
"[02:24:22\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mPerforming CiC binning...\u001b[00m\n",
"[02:24:22\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 0...\u001b[00m\n",
"[02:24:22\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148958000b60 for threadedDensity[22] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:22\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 22...\u001b[00m\n",
"[02:24:22\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148920000b60 for threadedDensity[12] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:22\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148968000b60 for threadedDensity[10] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:22\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148918000b60 for threadedDensity[15] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:22\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 10...\u001b[00m\n",
"[02:24:22\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 15...\u001b[00m\n",
"[02:24:22\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1488d8000b60 for threadedDensity[29] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:22\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1488e0000b60 for threadedDensity[6] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:22\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 29...\u001b[00m\n",
"[02:24:22\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 6...\u001b[00m\n",
"[02:24:22\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148940000b60 for threadedDensity[27] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:22\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148960000b60 for threadedDensity[13] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:22\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148900000b60 for threadedDensity[16] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:22\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 13...\u001b[00m\n",
"[02:24:22\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 16...\u001b[00m\n",
"[02:24:22\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 27...\u001b[00m\n",
"[02:24:22\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148930000b60 for threadedDensity[14] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:22\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148938000b60 for threadedDensity[18] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:22\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 14...\u001b[00m\n",
"[02:24:22\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 18...\u001b[00m\n",
"[02:24:22\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148910000b60 for threadedDensity[23] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:22\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148908000b60 for threadedDensity[8] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:22\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 23...\u001b[00m\n",
"[02:24:22\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 8...\u001b[00m\n",
"[02:24:22\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 12...\u001b[00m\n",
"[02:24:22\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148950000b60 for threadedDensity[9] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:22\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148928000b60 for threadedDensity[20] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:22\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 9...\u001b[00m\n",
"[02:24:22\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 20...\u001b[00m\n",
"[02:24:22\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1489b8000b60 for threadedDensity[4] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:22\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148948000b60 for threadedDensity[31] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:22\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 31...\u001b[00m\n",
"[02:24:22\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148980000b60 for threadedDensity[11] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:22\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 4...\u001b[00m\n",
"[02:24:22\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 11...\u001b[00m\n",
"[02:24:22\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148990000b60 for threadedDensity[21] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:22\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1488dc000b60 for threadedDensity[17] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:22\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148978000b60 for threadedDensity[26] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:22\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 17...\u001b[00m\n",
"[02:24:22\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 26...\u001b[00m\n",
"[02:24:22\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1488e8000b60 for threadedDensity[2] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:22\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 21...\u001b[00m\n",
"[02:24:22\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 2...\u001b[00m\n",
"[02:24:22\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148988000b60 for threadedDensity[28] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:22\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1489b0000b60 for threadedDensity[1] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:22\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148970000b60 for threadedDensity[7] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:22\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 1...\u001b[00m\n",
"[02:24:22\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 7...\u001b[00m\n",
"[02:24:22\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 28...\u001b[00m\n",
"[02:24:22\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1488f0000b60 for threadedDensity[24] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:22\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1489a8000b60 for threadedDensity[30] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:22\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1488f8000b60 for threadedDensity[19] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:22\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 30...\u001b[00m\n",
"[02:24:22\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 19...\u001b[00m\n",
"[02:24:22\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 24...\u001b[00m\n",
"[02:24:22\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148998000b60 for threadedDensity[25] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:22\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 25...\u001b[00m\n",
"[02:24:22\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1489a0000b60 for threadedDensity[3] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:22\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 3...\u001b[00m\n",
"[02:24:22\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1488d0000b60 for threadedDensity[5] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:22\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 5...\u001b[00m\n",
"[02:24:22\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 2 done.\u001b[00m\n",
"[02:24:22\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 5 done.\u001b[00m\n",
"[02:24:22\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 22 done.\u001b[00m\n",
"[02:24:22\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 29 done.\u001b[00m\n",
"[02:24:22\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 6 done.\u001b[00m\n",
"[02:24:22\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 27 done.\u001b[00m\n",
"[02:24:22\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 4 done.\u001b[00m\n",
"[02:24:22\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 16 done.\u001b[00m\n",
"[02:24:22\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 13 done.\u001b[00m\n",
"[02:24:22\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 14 done.\u001b[00m\n",
"[02:24:22\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 18 done.\u001b[00m\n",
"[02:24:22\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 12 done.\u001b[00m\n",
"[02:24:22\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 25 done.\u001b[00m\n",
"[02:24:22\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 15 done.\u001b[00m\n",
"[02:24:22\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 10 done.\u001b[00m\n",
"[02:24:22\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 23 done.\u001b[00m\n",
"[02:24:22\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 8 done.\u001b[00m\n",
"[02:24:22\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 31 done.\u001b[00m\n",
"[02:24:22\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 11 done.\u001b[00m\n",
"[02:24:22\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 9 done.\u001b[00m\n",
"[02:24:22\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 20 done.\u001b[00m\n",
"[02:24:22\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 26 done.\u001b[00m\n",
"[02:24:22\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 17 done.\u001b[00m\n",
"[02:24:22\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 28 done.\u001b[00m\n",
"[02:24:22\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 24 done.\u001b[00m\n",
"[02:24:22\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 21 done.\u001b[00m\n",
"[02:24:22\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 3 done.\u001b[00m\n",
"[02:24:22\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 19 done.\u001b[00m\n",
"[02:24:22\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 30 done.\u001b[00m\n",
"[02:24:22\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 1 done.\u001b[00m\n",
"[02:24:22\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 7 done.\u001b[00m\n",
"[02:24:22\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 0 done.\u001b[00m\n",
"[02:24:22\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mPerforming CiC done.\u001b[00m\n",
"[02:24:22\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mPerforming CiC reduction...\u001b[00m\n",
"[02:24:22\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x1489b0000b60 for threadedDensity[1] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:22\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x1488e8000b60 for threadedDensity[2] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:22\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x1489a0000b60 for threadedDensity[3] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:22\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x1489b8000b60 for threadedDensity[4] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:22\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x1488d0000b60 for threadedDensity[5] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:22\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x1488e0000b60 for threadedDensity[6] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:22\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148970000b60 for threadedDensity[7] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:22\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148908000b60 for threadedDensity[8] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:22\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148950000b60 for threadedDensity[9] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:22\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148968000b60 for threadedDensity[10] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:22\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148980000b60 for threadedDensity[11] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:22\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148920000b60 for threadedDensity[12] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:22\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148960000b60 for threadedDensity[13] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:22\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148930000b60 for threadedDensity[14] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:22\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148918000b60 for threadedDensity[15] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:22\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148900000b60 for threadedDensity[16] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:22\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x1488dc000b60 for threadedDensity[17] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:22\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148938000b60 for threadedDensity[18] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:22\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x1488f8000b60 for threadedDensity[19] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:22\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148928000b60 for threadedDensity[20] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:22\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148990000b60 for threadedDensity[21] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:22\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148958000b60 for threadedDensity[22] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:22\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148910000b60 for threadedDensity[23] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:22\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x1488f0000b60 for threadedDensity[24] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:22\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148998000b60 for threadedDensity[25] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:22\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148978000b60 for threadedDensity[26] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:22\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148940000b60 for threadedDensity[27] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:22\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148988000b60 for threadedDensity[28] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:22\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x1488d8000b60 for threadedDensity[29] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:22\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x1489a8000b60 for threadedDensity[30] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:22\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148948000b60 for threadedDensity[31] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:22\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mPerforming CiC reduction done.\u001b[00m\n",
"[02:24:22\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Getting density contrast (using 32 cores and 32 arrays, parallel routine 1) done.\n",
"[02:24:22\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Getting gravitational potential, periodic boundary conditions (using 32 cores)...\n",
"[02:24:22\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (1081344 bytes) at 0x55cb08c1b190 for AUX in \u001b[38;5;227mpoisson_solvers.c\u001b[0;36m:\u001b[38;5;192msolve_poisson_DFT\u001b[0;36m:\u001b[0;32m106\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:22\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08c1b190 for AUX in \u001b[38;5;227mpoisson_solvers.c\u001b[0;36m:\u001b[38;5;192msolve_poisson_DFT\u001b[0;36m:\u001b[0;32m116\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:22\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Getting gravitational potential, periodic boundary conditions (using 32 cores) done.\n",
"[02:24:22\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated memory (1048576 bytes) at 0x55cb08c1b190 for gx[d] in \u001b[38;5;227mdiagnostic.c\u001b[0;36m:\u001b[38;5;192mrun_force_diagnostic\u001b[0;36m:\u001b[0;32m132\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:22\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Acceleration loop, direction 0...\n",
"[02:24:22\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Acceleration loop, direction 0 done.\n",
"[02:24:22\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated memory (1048576 bytes) at 0x55cb08d1b1a0 for gx[d] in \u001b[38;5;227mdiagnostic.c\u001b[0;36m:\u001b[38;5;192mrun_force_diagnostic\u001b[0;36m:\u001b[0;32m132\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:22\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Acceleration loop, direction 1...\n",
"[02:24:22\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Acceleration loop, direction 1 done.\n",
"[02:24:22\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated memory (1048576 bytes) at 0x55cb08e1b1b0 for gx[d] in \u001b[38;5;227mdiagnostic.c\u001b[0;36m:\u001b[38;5;192mrun_force_diagnostic\u001b[0;36m:\u001b[0;32m132\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:22\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Acceleration loop, direction 2...\n",
"[02:24:22\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Acceleration loop, direction 2 done.\n",
"[02:24:22\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08c1b190 for gx[d] in \u001b[38;5;227mdiagnostic.c\u001b[0;36m:\u001b[38;5;192mrun_force_diagnostic\u001b[0;36m:\u001b[0;32m151\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:22\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08d1b1a0 for gx[d] in \u001b[38;5;227mdiagnostic.c\u001b[0;36m:\u001b[38;5;192mrun_force_diagnostic\u001b[0;36m:\u001b[0;32m151\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:22\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08e1b1b0 for gx[d] in \u001b[38;5;227mdiagnostic.c\u001b[0;36m:\u001b[38;5;192mrun_force_diagnostic\u001b[0;36m:\u001b[0;32m151\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:22\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]====|Computing total force on each particle (before removing any) done.\n",
"[02:24:22\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]====|Computing force for particle pair 1, bin 19: [19.050, 32.000]. Total: 1 / max 60 pairs...\n",
"[02:24:22\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated memory (393204 bytes) at 0x55cb08c1b190 for xwopb in \u001b[38;5;227mdiagnostic.c\u001b[0;36m:\u001b[38;5;192mrun_force_diagnostic\u001b[0;36m:\u001b[0;32m207\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:22\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated memory (1048576 bytes) at 0x55cb08c7b190 for g_pad in \u001b[38;5;227mdiagnostic.c\u001b[0;36m:\u001b[38;5;192mcompute_force_on_particle\u001b[0;36m:\u001b[0;32m32\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:22\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mdp3m0=1.000000\u001b[00m\n",
"[02:24:22\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mdp3m1=1.000000\u001b[00m\n",
"[02:24:22\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mdp3m2=1.000000\u001b[00m\n",
"[02:24:22\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mGiven the available memory, 4095 threads could be allocated and 32 threads will be used in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel\u001b[0;36m:\u001b[0;32m347\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:22\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mGiven the available memory, 4095 threads could be allocated and 32 threads will be used in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m73\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:22\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Getting density contrast (using 32 cores and 32 arrays, parallel routine 1)...\n",
"[02:24:22\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mPerforming CiC binning...\u001b[00m\n",
"[02:24:22\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 0...\u001b[00m\n",
"[02:24:22\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148980000b60 for threadedDensity[11] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:22\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148900000b60 for threadedDensity[16] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:22\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148960000b60 for threadedDensity[13] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:22\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 16...\u001b[00m\n",
"[02:24:22\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 13...\u001b[00m\n",
"[02:24:22\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1488d8000b60 for threadedDensity[29] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:22\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1488e0000b60 for threadedDensity[6] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:22\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 29...\u001b[00m\n",
"[02:24:22\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 6...\u001b[00m\n",
"[02:24:22\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148940000b60 for threadedDensity[27] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:22\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148958000b60 for threadedDensity[22] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:22\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1488f8000b60 for threadedDensity[19] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:22\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1489a8000b60 for threadedDensity[30] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:22\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 19...\u001b[00m\n",
"[02:24:22\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 30...\u001b[00m\n",
"[02:24:22\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 22...\u001b[00m\n",
"[02:24:22\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 27...\u001b[00m\n",
"[02:24:22\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148998000b60 for threadedDensity[25] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:22\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148920000b60 for threadedDensity[12] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:22\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 25...\u001b[00m\n",
"[02:24:22\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 12...\u001b[00m\n",
"[02:24:22\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148938000b60 for threadedDensity[18] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:22\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148930000b60 for threadedDensity[14] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:22\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 14...\u001b[00m\n",
"[02:24:22\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 18...\u001b[00m\n",
"[02:24:22\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148968000b60 for threadedDensity[10] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:22\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148918000b60 for threadedDensity[15] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:22\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 10...\u001b[00m\n",
"[02:24:22\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 15...\u001b[00m\n",
"[02:24:22\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148910000b60 for threadedDensity[23] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:22\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148908000b60 for threadedDensity[8] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:22\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 23...\u001b[00m\n",
"[02:24:22\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 8...\u001b[00m\n",
"[02:24:22\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148950000b60 for threadedDensity[9] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:22\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148928000b60 for threadedDensity[20] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:22\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 9...\u001b[00m\n",
"[02:24:22\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 20...\u001b[00m\n",
"[02:24:22\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1489b8000b60 for threadedDensity[4] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:22\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1488dc000b60 for threadedDensity[17] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:22\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148978000b60 for threadedDensity[26] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:22\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 17...\u001b[00m\n",
"[02:24:22\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 26...\u001b[00m\n",
"[02:24:22\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 4...\u001b[00m\n",
"[02:24:22\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148990000b60 for threadedDensity[21] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:22\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148948000b60 for threadedDensity[31] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:22\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 11...\u001b[00m\n",
"[02:24:22\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 31...\u001b[00m\n",
"[02:24:22\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148988000b60 for threadedDensity[28] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:22\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1488e8000b60 for threadedDensity[2] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:22\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1488d0000b60 for threadedDensity[5] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:22\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 2...\u001b[00m\n",
"[02:24:22\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 5...\u001b[00m\n",
"[02:24:22\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148970000b60 for threadedDensity[7] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:22\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1489b0000b60 for threadedDensity[1] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:22\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 7...\u001b[00m\n",
"[02:24:22\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 1...\u001b[00m\n",
"[02:24:22\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 21...\u001b[00m\n",
"[02:24:22\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1489a0000b60 for threadedDensity[3] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:22\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 28...\u001b[00m\n",
"[02:24:22\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 3...\u001b[00m\n",
"[02:24:22\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1488f0000b60 for threadedDensity[24] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:22\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 24...\u001b[00m\n",
"[02:24:22\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 28 done.\u001b[00m\n",
"[02:24:22\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 24 done.\u001b[00m\n",
"[02:24:22\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 27 done.\u001b[00m\n",
"[02:24:22\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 4 done.\u001b[00m\n",
"[02:24:22\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 22 done.\u001b[00m\n",
"[02:24:22\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 6 done.\u001b[00m\n",
"[02:24:22\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 29 done.\u001b[00m\n",
"[02:24:22\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 16 done.\u001b[00m\n",
"[02:24:22\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 13 done.\u001b[00m\n",
"[02:24:22\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 14 done.\u001b[00m\n",
"[02:24:22\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 18 done.\u001b[00m\n",
"[02:24:22\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 25 done.\u001b[00m\n",
"[02:24:22\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 12 done.\u001b[00m\n",
"[02:24:22\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 10 done.\u001b[00m\n",
"[02:24:22\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 15 done.\u001b[00m\n",
"[02:24:22\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 23 done.\u001b[00m\n",
"[02:24:22\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 8 done.\u001b[00m\n",
"[02:24:22\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 20 done.\u001b[00m\n",
"[02:24:22\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 9 done.\u001b[00m\n",
"[02:24:22\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 31 done.\u001b[00m\n",
"[02:24:22\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 11 done.\u001b[00m\n",
"[02:24:22\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 17 done.\u001b[00m\n",
"[02:24:22\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 26 done.\u001b[00m\n",
"[02:24:22\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 2 done.\u001b[00m\n",
"[02:24:22\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 5 done.\u001b[00m\n",
"[02:24:22\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 1 done.\u001b[00m\n",
"[02:24:22\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 7 done.\u001b[00m\n",
"[02:24:22\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 21 done.\u001b[00m\n",
"[02:24:22\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 3 done.\u001b[00m\n",
"[02:24:22\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 30 done.\u001b[00m\n",
"[02:24:22\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 19 done.\u001b[00m\n",
"[02:24:22\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 0 done.\u001b[00m\n",
"[02:24:22\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mPerforming CiC done.\u001b[00m\n",
"[02:24:22\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mPerforming CiC reduction...\u001b[00m\n",
"[02:24:22\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x1489b0000b60 for threadedDensity[1] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:22\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x1488e8000b60 for threadedDensity[2] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:22\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x1489a0000b60 for threadedDensity[3] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:23\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x1489b8000b60 for threadedDensity[4] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:23\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x1488d0000b60 for threadedDensity[5] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:23\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x1488e0000b60 for threadedDensity[6] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:23\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148970000b60 for threadedDensity[7] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:23\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148908000b60 for threadedDensity[8] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:23\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148950000b60 for threadedDensity[9] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:23\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148968000b60 for threadedDensity[10] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:23\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148980000b60 for threadedDensity[11] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:23\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148920000b60 for threadedDensity[12] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:23\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148960000b60 for threadedDensity[13] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:23\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148930000b60 for threadedDensity[14] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:23\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148918000b60 for threadedDensity[15] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:23\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148900000b60 for threadedDensity[16] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:23\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x1488dc000b60 for threadedDensity[17] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:23\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148938000b60 for threadedDensity[18] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:23\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x1488f8000b60 for threadedDensity[19] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:23\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148928000b60 for threadedDensity[20] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:23\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148990000b60 for threadedDensity[21] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:23\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148958000b60 for threadedDensity[22] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:23\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148910000b60 for threadedDensity[23] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:23\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x1488f0000b60 for threadedDensity[24] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:23\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148998000b60 for threadedDensity[25] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:23\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148978000b60 for threadedDensity[26] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:23\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148940000b60 for threadedDensity[27] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:23\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148988000b60 for threadedDensity[28] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:23\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x1488d8000b60 for threadedDensity[29] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:23\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x1489a8000b60 for threadedDensity[30] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:23\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148948000b60 for threadedDensity[31] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:23\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mPerforming CiC reduction done.\u001b[00m\n",
"[02:24:23\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Getting density contrast (using 32 cores and 32 arrays, parallel routine 1) done.\n",
"[02:24:23\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Getting gravitational potential, periodic boundary conditions (using 32 cores)...\n",
"[02:24:23\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (1081344 bytes) at 0x55cb08d7b1a0 for AUX in \u001b[38;5;227mpoisson_solvers.c\u001b[0;36m:\u001b[38;5;192msolve_poisson_DFT\u001b[0;36m:\u001b[0;32m106\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:23\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08d7b1a0 for AUX in \u001b[38;5;227mpoisson_solvers.c\u001b[0;36m:\u001b[38;5;192msolve_poisson_DFT\u001b[0;36m:\u001b[0;32m116\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:23\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Getting gravitational potential, periodic boundary conditions (using 32 cores) done.\n",
"[02:24:23\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Acceleration loop, direction 0...\n",
"[02:24:23\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Acceleration loop, direction 0 done.\n",
"[02:24:23\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Acceleration loop, direction 1...\n",
"[02:24:23\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Acceleration loop, direction 1 done.\n",
"[02:24:23\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Acceleration loop, direction 2...\n",
"[02:24:23\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Acceleration loop, direction 2 done.\n",
"[02:24:23\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08c7b190 for g_pad in \u001b[38;5;227mdiagnostic.c\u001b[0;36m:\u001b[38;5;192mcompute_force_on_particle\u001b[0;36m:\u001b[0;32m70\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:23\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08c1b190 for xwopb in \u001b[38;5;227mdiagnostic.c\u001b[0;36m:\u001b[38;5;192mrun_force_diagnostic\u001b[0;36m:\u001b[0;32m227\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:23\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]====|Computing force for particle pair 1, bin 19: [19.050, 32.000] done. Total: 1 / max 60 pairs. Trials 1 / max 100000000.\n",
"[02:24:23\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]====|Computing force for particle pair 2, bin 19: [19.050, 32.000]. Total: 2 / max 60 pairs...\n",
"[02:24:23\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated memory (393204 bytes) at 0x55cb08c1b190 for xwopb in \u001b[38;5;227mdiagnostic.c\u001b[0;36m:\u001b[38;5;192mrun_force_diagnostic\u001b[0;36m:\u001b[0;32m207\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:23\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated memory (1048576 bytes) at 0x55cb08c7b190 for g_pad in \u001b[38;5;227mdiagnostic.c\u001b[0;36m:\u001b[38;5;192mcompute_force_on_particle\u001b[0;36m:\u001b[0;32m32\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:23\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mdp3m0=1.000000\u001b[00m\n",
"[02:24:23\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mdp3m1=1.000000\u001b[00m\n",
"[02:24:23\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mdp3m2=1.000000\u001b[00m\n",
"[02:24:23\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mGiven the available memory, 4095 threads could be allocated and 32 threads will be used in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel\u001b[0;36m:\u001b[0;32m347\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:23\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mGiven the available memory, 4095 threads could be allocated and 32 threads will be used in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m73\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:23\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Getting density contrast (using 32 cores and 32 arrays, parallel routine 1)...\n",
"[02:24:23\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mPerforming CiC binning...\u001b[00m\n",
"[02:24:23\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 0...\u001b[00m\n",
"[02:24:23\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148908000b60 for threadedDensity[8] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:23\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1488d8000b60 for threadedDensity[29] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:23\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1488e0000b60 for threadedDensity[6] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:23\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 29...\u001b[00m\n",
"[02:24:23\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 6...\u001b[00m\n",
"[02:24:23\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148948000b60 for threadedDensity[31] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:23\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148940000b60 for threadedDensity[27] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:23\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1489b8000b60 for threadedDensity[4] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:23\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148938000b60 for threadedDensity[18] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:23\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148930000b60 for threadedDensity[14] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:23\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 18...\u001b[00m\n",
"[02:24:23\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 14...\u001b[00m\n",
"[02:24:23\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 27...\u001b[00m\n",
"[02:24:23\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 4...\u001b[00m\n",
"[02:24:23\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 31...\u001b[00m\n",
"[02:24:23\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148900000b60 for threadedDensity[16] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:23\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148960000b60 for threadedDensity[13] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:23\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 16...\u001b[00m\n",
"[02:24:23\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 13...\u001b[00m\n",
"[02:24:23\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148920000b60 for threadedDensity[12] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:23\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148998000b60 for threadedDensity[25] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:23\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 12...\u001b[00m\n",
"[02:24:23\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 25...\u001b[00m\n",
"[02:24:23\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148910000b60 for threadedDensity[23] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:23\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 8...\u001b[00m\n",
"[02:24:23\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 23...\u001b[00m\n",
"[02:24:23\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148968000b60 for threadedDensity[10] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:23\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148918000b60 for threadedDensity[15] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:23\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 10...\u001b[00m\n",
"[02:24:23\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 15...\u001b[00m\n",
"[02:24:23\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148980000b60 for threadedDensity[11] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:23\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1488f0000b60 for threadedDensity[24] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:23\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 11...\u001b[00m\n",
"[02:24:23\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 24...\u001b[00m\n",
"[02:24:23\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148950000b60 for threadedDensity[9] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:23\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148928000b60 for threadedDensity[20] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:23\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 9...\u001b[00m\n",
"[02:24:23\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 20...\u001b[00m\n",
"[02:24:23\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148990000b60 for threadedDensity[21] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:23\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1489a0000b60 for threadedDensity[3] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:23\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 21...\u001b[00m\n",
"[02:24:23\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 3...\u001b[00m\n",
"[02:24:23\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1488e8000b60 for threadedDensity[2] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:23\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148978000b60 for threadedDensity[26] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:23\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1488dc000b60 for threadedDensity[17] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:23\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 26...\u001b[00m\n",
"[02:24:23\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 17...\u001b[00m\n",
"[02:24:23\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148988000b60 for threadedDensity[28] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:23\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 2...\u001b[00m\n",
"[02:24:23\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1488f8000b60 for threadedDensity[19] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:23\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1489a8000b60 for threadedDensity[30] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:23\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 19...\u001b[00m\n",
"[02:24:23\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 30...\u001b[00m\n",
"[02:24:23\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 28...\u001b[00m\n",
"[02:24:23\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1489b0000b60 for threadedDensity[1] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:23\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148970000b60 for threadedDensity[7] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:23\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 1...\u001b[00m\n",
"[02:24:23\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 7...\u001b[00m\n",
"[02:24:23\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148958000b60 for threadedDensity[22] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:23\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 22...\u001b[00m\n",
"[02:24:23\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1488d0000b60 for threadedDensity[5] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:23\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 5...\u001b[00m\n",
"[02:24:23\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 31 done.\u001b[00m\n",
"[02:24:23\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 22 done.\u001b[00m\n",
"[02:24:23\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 6 done.\u001b[00m\n",
"[02:24:23\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 29 done.\u001b[00m\n",
"[02:24:23\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 4 done.\u001b[00m\n",
"[02:24:23\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 27 done.\u001b[00m\n",
"[02:24:23\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 13 done.\u001b[00m\n",
"[02:24:23\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 16 done.\u001b[00m\n",
"[02:24:23\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 25 done.\u001b[00m\n",
"[02:24:23\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 12 done.\u001b[00m\n",
"[02:24:23\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 14 done.\u001b[00m\n",
"[02:24:23\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 18 done.\u001b[00m\n",
"[02:24:23\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 15 done.\u001b[00m\n",
"[02:24:23\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 10 done.\u001b[00m\n",
"[02:24:23\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 8 done.\u001b[00m\n",
"[02:24:23\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 23 done.\u001b[00m\n",
"[02:24:23\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 24 done.\u001b[00m\n",
"[02:24:23\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 11 done.\u001b[00m\n",
"[02:24:23\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 9 done.\u001b[00m\n",
"[02:24:23\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 20 done.\u001b[00m\n",
"[02:24:23\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 21 done.\u001b[00m\n",
"[02:24:23\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 3 done.\u001b[00m\n",
"[02:24:23\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 2 done.\u001b[00m\n",
"[02:24:23\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 5 done.\u001b[00m\n",
"[02:24:23\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 17 done.\u001b[00m\n",
"[02:24:23\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 26 done.\u001b[00m\n",
"[02:24:23\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 28 done.\u001b[00m\n",
"[02:24:23\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 30 done.\u001b[00m\n",
"[02:24:23\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 19 done.\u001b[00m\n",
"[02:24:23\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 1 done.\u001b[00m\n",
"[02:24:23\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 7 done.\u001b[00m\n",
"[02:24:23\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 0 done.\u001b[00m\n",
"[02:24:23\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mPerforming CiC done.\u001b[00m\n",
"[02:24:23\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mPerforming CiC reduction...\u001b[00m\n",
"[02:24:23\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x1489b0000b60 for threadedDensity[1] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:23\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x1488e8000b60 for threadedDensity[2] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:23\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x1489a0000b60 for threadedDensity[3] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:23\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x1489b8000b60 for threadedDensity[4] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:23\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x1488d0000b60 for threadedDensity[5] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:23\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x1488e0000b60 for threadedDensity[6] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:23\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148970000b60 for threadedDensity[7] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:23\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148908000b60 for threadedDensity[8] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:23\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148950000b60 for threadedDensity[9] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:23\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148968000b60 for threadedDensity[10] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:23\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148980000b60 for threadedDensity[11] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:23\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148920000b60 for threadedDensity[12] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:23\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148960000b60 for threadedDensity[13] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:23\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148930000b60 for threadedDensity[14] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:23\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148918000b60 for threadedDensity[15] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:23\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148900000b60 for threadedDensity[16] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:23\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x1488dc000b60 for threadedDensity[17] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:23\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148938000b60 for threadedDensity[18] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:23\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x1488f8000b60 for threadedDensity[19] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:23\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148928000b60 for threadedDensity[20] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:23\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148990000b60 for threadedDensity[21] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:23\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148958000b60 for threadedDensity[22] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:23\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148910000b60 for threadedDensity[23] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:23\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x1488f0000b60 for threadedDensity[24] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:23\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148998000b60 for threadedDensity[25] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:23\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148978000b60 for threadedDensity[26] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:23\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148940000b60 for threadedDensity[27] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:23\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148988000b60 for threadedDensity[28] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:23\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x1488d8000b60 for threadedDensity[29] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:23\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x1489a8000b60 for threadedDensity[30] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:23\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148948000b60 for threadedDensity[31] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:23\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mPerforming CiC reduction done.\u001b[00m\n",
"[02:24:23\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Getting density contrast (using 32 cores and 32 arrays, parallel routine 1) done.\n",
"[02:24:23\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Getting gravitational potential, periodic boundary conditions (using 32 cores)...\n",
"[02:24:23\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (1081344 bytes) at 0x55cb08d7b1a0 for AUX in \u001b[38;5;227mpoisson_solvers.c\u001b[0;36m:\u001b[38;5;192msolve_poisson_DFT\u001b[0;36m:\u001b[0;32m106\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:23\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08d7b1a0 for AUX in \u001b[38;5;227mpoisson_solvers.c\u001b[0;36m:\u001b[38;5;192msolve_poisson_DFT\u001b[0;36m:\u001b[0;32m116\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:23\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Getting gravitational potential, periodic boundary conditions (using 32 cores) done.\n",
"[02:24:23\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Acceleration loop, direction 0...\n",
"[02:24:23\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Acceleration loop, direction 0 done.\n",
"[02:24:23\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Acceleration loop, direction 1...\n",
"[02:24:23\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Acceleration loop, direction 1 done.\n",
"[02:24:23\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Acceleration loop, direction 2...\n",
"[02:24:23\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Acceleration loop, direction 2 done.\n",
"[02:24:23\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08c7b190 for g_pad in \u001b[38;5;227mdiagnostic.c\u001b[0;36m:\u001b[38;5;192mcompute_force_on_particle\u001b[0;36m:\u001b[0;32m70\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:23\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08c1b190 for xwopb in \u001b[38;5;227mdiagnostic.c\u001b[0;36m:\u001b[38;5;192mrun_force_diagnostic\u001b[0;36m:\u001b[0;32m227\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:23\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]====|Computing force for particle pair 2, bin 19: [19.050, 32.000] done. Total: 2 / max 60 pairs. Trials 2 / max 100000000.\n",
"[02:24:23\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]====|Computing force for particle pair 3, bin 19: [19.050, 32.000]. Total: 3 / max 60 pairs...\n",
"[02:24:23\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated memory (393204 bytes) at 0x55cb08c1b190 for xwopb in \u001b[38;5;227mdiagnostic.c\u001b[0;36m:\u001b[38;5;192mrun_force_diagnostic\u001b[0;36m:\u001b[0;32m207\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:23\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated memory (1048576 bytes) at 0x55cb08c7b190 for g_pad in \u001b[38;5;227mdiagnostic.c\u001b[0;36m:\u001b[38;5;192mcompute_force_on_particle\u001b[0;36m:\u001b[0;32m32\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:23\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mdp3m0=1.000000\u001b[00m\n",
"[02:24:23\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mdp3m1=1.000000\u001b[00m\n",
"[02:24:23\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mdp3m2=1.000000\u001b[00m\n",
"[02:24:23\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mGiven the available memory, 4095 threads could be allocated and 32 threads will be used in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel\u001b[0;36m:\u001b[0;32m347\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:23\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mGiven the available memory, 4095 threads could be allocated and 32 threads will be used in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m73\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:23\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Getting density contrast (using 32 cores and 32 arrays, parallel routine 1)...\n",
"[02:24:23\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mPerforming CiC binning...\u001b[00m\n",
"[02:24:23\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 0...\u001b[00m\n",
"[02:24:23\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148988000b60 for threadedDensity[28] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:23\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148968000b60 for threadedDensity[10] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:23\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1488e0000b60 for threadedDensity[6] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:23\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1488d8000b60 for threadedDensity[29] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:23\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 6...\u001b[00m\n",
"[02:24:23\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 29...\u001b[00m\n",
"[02:24:23\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148958000b60 for threadedDensity[22] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:23\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148900000b60 for threadedDensity[16] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:23\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148960000b60 for threadedDensity[13] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:23\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 16...\u001b[00m\n",
"[02:24:23\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 13...\u001b[00m\n",
"[02:24:23\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 22...\u001b[00m\n",
"[02:24:23\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148948000b60 for threadedDensity[31] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:23\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148940000b60 for threadedDensity[27] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:23\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1489b8000b60 for threadedDensity[4] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:23\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 27...\u001b[00m\n",
"[02:24:23\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 4...\u001b[00m\n",
"[02:24:23\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 31...\u001b[00m\n",
"[02:24:23\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148930000b60 for threadedDensity[14] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:23\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148938000b60 for threadedDensity[18] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:23\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 14...\u001b[00m\n",
"[02:24:23\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 18...\u001b[00m\n",
"[02:24:23\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148920000b60 for threadedDensity[12] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:23\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148998000b60 for threadedDensity[25] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:23\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 12...\u001b[00m\n",
"[02:24:23\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 25...\u001b[00m\n",
"[02:24:23\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148910000b60 for threadedDensity[23] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:23\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148908000b60 for threadedDensity[8] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:23\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 23...\u001b[00m\n",
"[02:24:23\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 8...\u001b[00m\n",
"[02:24:23\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148918000b60 for threadedDensity[15] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:23\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 10...\u001b[00m\n",
"[02:24:23\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 15...\u001b[00m\n",
"[02:24:23\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148950000b60 for threadedDensity[9] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:23\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148928000b60 for threadedDensity[20] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:23\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 9...\u001b[00m\n",
"[02:24:23\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 20...\u001b[00m\n",
"[02:24:23\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148980000b60 for threadedDensity[11] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:23\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1488f0000b60 for threadedDensity[24] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:23\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 11...\u001b[00m\n",
"[02:24:23\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 24...\u001b[00m\n",
"[02:24:23\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1488e8000b60 for threadedDensity[2] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:23\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1488d0000b60 for threadedDensity[5] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:23\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 2...\u001b[00m\n",
"[02:24:23\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 5...\u001b[00m\n",
"[02:24:23\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148978000b60 for threadedDensity[26] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:23\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1488dc000b60 for threadedDensity[17] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:23\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 26...\u001b[00m\n",
"[02:24:23\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 17...\u001b[00m\n",
"[02:24:23\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1489a0000b60 for threadedDensity[3] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:23\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148990000b60 for threadedDensity[21] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:23\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 3...\u001b[00m\n",
"[02:24:23\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 21...\u001b[00m\n",
"[02:24:23\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 28...\u001b[00m\n",
"[02:24:23\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1489b0000b60 for threadedDensity[1] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:23\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148970000b60 for threadedDensity[7] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:23\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 1...\u001b[00m\n",
"[02:24:23\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 7...\u001b[00m\n",
"[02:24:23\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1489a8000b60 for threadedDensity[30] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:23\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1488f8000b60 for threadedDensity[19] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:23\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 30...\u001b[00m\n",
"[02:24:23\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 19...\u001b[00m\n",
"[02:24:23\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 7 done.\u001b[00m\n",
"[02:24:23\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 1 done.\u001b[00m\n",
"[02:24:23\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 6 done.\u001b[00m\n",
"[02:24:23\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 29 done.\u001b[00m\n",
"[02:24:23\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 27 done.\u001b[00m\n",
"[02:24:23\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 4 done.\u001b[00m\n",
"[02:24:23\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 31 done.\u001b[00m\n",
"[02:24:23\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 16 done.\u001b[00m\n",
"[02:24:23\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 13 done.\u001b[00m\n",
"[02:24:23\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 25 done.\u001b[00m\n",
"[02:24:23\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 12 done.\u001b[00m\n",
"[02:24:23\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 18 done.\u001b[00m\n",
"[02:24:23\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 14 done.\u001b[00m\n",
"[02:24:23\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 10 done.\u001b[00m\n",
"[02:24:23\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 15 done.\u001b[00m\n",
"[02:24:23\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 8 done.\u001b[00m\n",
"[02:24:23\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 23 done.\u001b[00m\n",
"[02:24:23\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 24 done.\u001b[00m\n",
"[02:24:23\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 11 done.\u001b[00m\n",
"[02:24:23\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 9 done.\u001b[00m\n",
"[02:24:23\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 20 done.\u001b[00m\n",
"[02:24:23\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 17 done.\u001b[00m\n",
"[02:24:23\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 26 done.\u001b[00m\n",
"[02:24:23\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 2 done.\u001b[00m\n",
"[02:24:23\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 5 done.\u001b[00m\n",
"[02:24:23\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 28 done.\u001b[00m\n",
"[02:24:23\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 0 done.\u001b[00m\n",
"[02:24:23\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 21 done.\u001b[00m\n",
"[02:24:23\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 3 done.\u001b[00m\n",
"[02:24:23\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 30 done.\u001b[00m\n",
"[02:24:23\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 19 done.\u001b[00m\n",
"[02:24:23\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 22 done.\u001b[00m\n",
"[02:24:23\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mPerforming CiC done.\u001b[00m\n",
"[02:24:23\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mPerforming CiC reduction...\u001b[00m\n",
"[02:24:23\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x1489b0000b60 for threadedDensity[1] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:23\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x1488e8000b60 for threadedDensity[2] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:23\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x1489a0000b60 for threadedDensity[3] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:23\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x1489b8000b60 for threadedDensity[4] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:23\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x1488d0000b60 for threadedDensity[5] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:23\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x1488e0000b60 for threadedDensity[6] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:23\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148970000b60 for threadedDensity[7] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:23\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148908000b60 for threadedDensity[8] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:23\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148950000b60 for threadedDensity[9] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:23\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148968000b60 for threadedDensity[10] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:23\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148980000b60 for threadedDensity[11] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:23\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148920000b60 for threadedDensity[12] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:23\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148960000b60 for threadedDensity[13] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:23\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148930000b60 for threadedDensity[14] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:23\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148918000b60 for threadedDensity[15] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:23\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148900000b60 for threadedDensity[16] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:23\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x1488dc000b60 for threadedDensity[17] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:23\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148938000b60 for threadedDensity[18] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:23\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x1488f8000b60 for threadedDensity[19] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:23\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148928000b60 for threadedDensity[20] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:23\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148990000b60 for threadedDensity[21] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:23\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148958000b60 for threadedDensity[22] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:23\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148910000b60 for threadedDensity[23] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:23\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x1488f0000b60 for threadedDensity[24] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:23\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148998000b60 for threadedDensity[25] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:23\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148978000b60 for threadedDensity[26] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:23\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148940000b60 for threadedDensity[27] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:23\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148988000b60 for threadedDensity[28] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:23\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x1488d8000b60 for threadedDensity[29] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:23\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x1489a8000b60 for threadedDensity[30] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:23\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148948000b60 for threadedDensity[31] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:23\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mPerforming CiC reduction done.\u001b[00m\n",
"[02:24:23\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Getting density contrast (using 32 cores and 32 arrays, parallel routine 1) done.\n",
"[02:24:23\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Getting gravitational potential, periodic boundary conditions (using 32 cores)...\n",
"[02:24:23\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (1081344 bytes) at 0x55cb08d7b1a0 for AUX in \u001b[38;5;227mpoisson_solvers.c\u001b[0;36m:\u001b[38;5;192msolve_poisson_DFT\u001b[0;36m:\u001b[0;32m106\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:23\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08d7b1a0 for AUX in \u001b[38;5;227mpoisson_solvers.c\u001b[0;36m:\u001b[38;5;192msolve_poisson_DFT\u001b[0;36m:\u001b[0;32m116\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:23\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Getting gravitational potential, periodic boundary conditions (using 32 cores) done.\n",
"[02:24:23\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Acceleration loop, direction 0...\n",
"[02:24:23\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Acceleration loop, direction 0 done.\n",
"[02:24:23\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Acceleration loop, direction 1...\n",
"[02:24:23\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Acceleration loop, direction 1 done.\n",
"[02:24:23\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Acceleration loop, direction 2...\n",
"[02:24:23\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Acceleration loop, direction 2 done.\n",
"[02:24:23\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08c7b190 for g_pad in \u001b[38;5;227mdiagnostic.c\u001b[0;36m:\u001b[38;5;192mcompute_force_on_particle\u001b[0;36m:\u001b[0;32m70\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:23\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08c1b190 for xwopb in \u001b[38;5;227mdiagnostic.c\u001b[0;36m:\u001b[38;5;192mrun_force_diagnostic\u001b[0;36m:\u001b[0;32m227\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:23\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]====|Computing force for particle pair 3, bin 19: [19.050, 32.000] done. Total: 3 / max 60 pairs. Trials 4 / max 100000000.\n",
"[02:24:23\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]====|Computing force for particle pair 1, bin 18: [11.341, 19.050]. Total: 4 / max 60 pairs...\n",
"[02:24:23\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated memory (393204 bytes) at 0x55cb08c1b190 for xwopb in \u001b[38;5;227mdiagnostic.c\u001b[0;36m:\u001b[38;5;192mrun_force_diagnostic\u001b[0;36m:\u001b[0;32m207\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:23\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated memory (1048576 bytes) at 0x55cb08c7b190 for g_pad in \u001b[38;5;227mdiagnostic.c\u001b[0;36m:\u001b[38;5;192mcompute_force_on_particle\u001b[0;36m:\u001b[0;32m32\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:23\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mdp3m0=1.000000\u001b[00m\n",
"[02:24:23\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mdp3m1=1.000000\u001b[00m\n",
"[02:24:23\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mdp3m2=1.000000\u001b[00m\n",
"[02:24:23\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mGiven the available memory, 4095 threads could be allocated and 32 threads will be used in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel\u001b[0;36m:\u001b[0;32m347\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:23\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mGiven the available memory, 4095 threads could be allocated and 32 threads will be used in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m73\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:23\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Getting density contrast (using 32 cores and 32 arrays, parallel routine 1)...\n",
"[02:24:23\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mPerforming CiC binning...\u001b[00m\n",
"[02:24:23\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 0...\u001b[00m\n",
"[02:24:23\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148988000b60 for threadedDensity[28] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:23\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 28...\u001b[00m\n",
"[02:24:23\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148928000b60 for threadedDensity[20] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:23\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148950000b60 for threadedDensity[9] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:23\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 20...\u001b[00m\n",
"[02:24:23\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 9...\u001b[00m\n",
"[02:24:23\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1488d8000b60 for threadedDensity[29] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:23\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1488e0000b60 for threadedDensity[6] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:23\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 29...\u001b[00m\n",
"[02:24:23\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 6...\u001b[00m\n",
"[02:24:23\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148960000b60 for threadedDensity[13] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:23\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148900000b60 for threadedDensity[16] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:23\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 13...\u001b[00m\n",
"[02:24:23\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 16...\u001b[00m\n",
"[02:24:23\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148940000b60 for threadedDensity[27] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:23\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148930000b60 for threadedDensity[14] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:23\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148938000b60 for threadedDensity[18] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:23\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 14...\u001b[00m\n",
"[02:24:23\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 18...\u001b[00m\n",
"[02:24:23\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148948000b60 for threadedDensity[31] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:23\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 27...\u001b[00m\n",
"[02:24:23\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 31...\u001b[00m\n",
"[02:24:23\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148998000b60 for threadedDensity[25] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:23\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148920000b60 for threadedDensity[12] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:23\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 25...\u001b[00m\n",
"[02:24:23\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 12...\u001b[00m\n",
"[02:24:23\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148908000b60 for threadedDensity[8] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:23\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148918000b60 for threadedDensity[15] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:23\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148968000b60 for threadedDensity[10] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:23\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 10...\u001b[00m\n",
"[02:24:23\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 15...\u001b[00m\n",
"[02:24:23\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148910000b60 for threadedDensity[23] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:23\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 8...\u001b[00m\n",
"[02:24:23\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 23...\u001b[00m\n",
"[02:24:23\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1488e8000b60 for threadedDensity[2] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:23\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1488d0000b60 for threadedDensity[5] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:23\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 2...\u001b[00m\n",
"[02:24:23\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 5...\u001b[00m\n",
"[02:24:23\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1488f0000b60 for threadedDensity[24] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:23\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148980000b60 for threadedDensity[11] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:23\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 24...\u001b[00m\n",
"[02:24:23\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 11...\u001b[00m\n",
"[02:24:23\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1488dc000b60 for threadedDensity[17] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:23\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148978000b60 for threadedDensity[26] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:23\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 17...\u001b[00m\n",
"[02:24:23\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 26...\u001b[00m\n",
"[02:24:23\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148990000b60 for threadedDensity[21] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:23\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1489a0000b60 for threadedDensity[3] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:23\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 21...\u001b[00m\n",
"[02:24:23\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 3...\u001b[00m\n",
"[02:24:23\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1489b0000b60 for threadedDensity[1] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:23\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148970000b60 for threadedDensity[7] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:23\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 1...\u001b[00m\n",
"[02:24:23\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 7...\u001b[00m\n",
"[02:24:23\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1488f8000b60 for threadedDensity[19] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:23\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1489a8000b60 for threadedDensity[30] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:23\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 19...\u001b[00m\n",
"[02:24:23\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 30...\u001b[00m\n",
"[02:24:23\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148958000b60 for threadedDensity[22] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:23\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 22...\u001b[00m\n",
"[02:24:23\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1489b8000b60 for threadedDensity[4] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:23\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 4...\u001b[00m\n",
"[02:24:23\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 27 done.\u001b[00m\n",
"[02:24:23\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 4 done.\u001b[00m\n",
"[02:24:23\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 29 done.\u001b[00m\n",
"[02:24:23\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 6 done.\u001b[00m\n",
"[02:24:23\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 13 done.\u001b[00m\n",
"[02:24:23\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 16 done.\u001b[00m\n",
"[02:24:23\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 31 done.\u001b[00m\n",
"[02:24:23\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 22 done.\u001b[00m\n",
"[02:24:23\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 25 done.\u001b[00m\n",
"[02:24:23\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 12 done.\u001b[00m\n",
"[02:24:23\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 14 done.\u001b[00m\n",
"[02:24:23\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 18 done.\u001b[00m\n",
"[02:24:23\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 23 done.\u001b[00m\n",
"[02:24:23\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 8 done.\u001b[00m\n",
"[02:24:23\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 15 done.\u001b[00m\n",
"[02:24:23\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 10 done.\u001b[00m\n",
"[02:24:23\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 9 done.\u001b[00m\n",
"[02:24:23\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 20 done.\u001b[00m\n",
"[02:24:23\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 24 done.\u001b[00m\n",
"[02:24:23\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 11 done.\u001b[00m\n",
"[02:24:23\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 28 done.\u001b[00m\n",
"[02:24:23\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 26 done.\u001b[00m\n",
"[02:24:23\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 17 done.\u001b[00m\n",
"[02:24:23\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 5 done.\u001b[00m\n",
"[02:24:23\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 2 done.\u001b[00m\n",
"[02:24:23\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 3 done.\u001b[00m\n",
"[02:24:23\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 21 done.\u001b[00m\n",
"[02:24:23\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 1 done.\u001b[00m\n",
"[02:24:23\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 7 done.\u001b[00m\n",
"[02:24:23\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 19 done.\u001b[00m\n",
"[02:24:23\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 30 done.\u001b[00m\n",
"[02:24:23\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 0 done.\u001b[00m\n",
"[02:24:23\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mPerforming CiC done.\u001b[00m\n",
"[02:24:23\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mPerforming CiC reduction...\u001b[00m\n",
"[02:24:23\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x1489b0000b60 for threadedDensity[1] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:23\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x1488e8000b60 for threadedDensity[2] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:23\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x1489a0000b60 for threadedDensity[3] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:23\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x1489b8000b60 for threadedDensity[4] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:23\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x1488d0000b60 for threadedDensity[5] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:23\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x1488e0000b60 for threadedDensity[6] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:23\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148970000b60 for threadedDensity[7] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:23\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148908000b60 for threadedDensity[8] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:23\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148950000b60 for threadedDensity[9] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:23\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148968000b60 for threadedDensity[10] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:23\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148980000b60 for threadedDensity[11] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:23\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148920000b60 for threadedDensity[12] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:23\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148960000b60 for threadedDensity[13] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:23\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148930000b60 for threadedDensity[14] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:23\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148918000b60 for threadedDensity[15] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:23\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148900000b60 for threadedDensity[16] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:23\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x1488dc000b60 for threadedDensity[17] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:23\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148938000b60 for threadedDensity[18] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:23\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x1488f8000b60 for threadedDensity[19] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:23\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148928000b60 for threadedDensity[20] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:23\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148990000b60 for threadedDensity[21] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:23\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148958000b60 for threadedDensity[22] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:23\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148910000b60 for threadedDensity[23] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:23\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x1488f0000b60 for threadedDensity[24] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:23\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148998000b60 for threadedDensity[25] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:23\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148978000b60 for threadedDensity[26] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:23\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148940000b60 for threadedDensity[27] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:23\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148988000b60 for threadedDensity[28] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:23\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x1488d8000b60 for threadedDensity[29] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:23\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x1489a8000b60 for threadedDensity[30] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:23\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148948000b60 for threadedDensity[31] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:23\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mPerforming CiC reduction done.\u001b[00m\n",
"[02:24:23\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Getting density contrast (using 32 cores and 32 arrays, parallel routine 1) done.\n",
"[02:24:23\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Getting gravitational potential, periodic boundary conditions (using 32 cores)...\n",
"[02:24:23\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (1081344 bytes) at 0x55cb08d7b1a0 for AUX in \u001b[38;5;227mpoisson_solvers.c\u001b[0;36m:\u001b[38;5;192msolve_poisson_DFT\u001b[0;36m:\u001b[0;32m106\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:23\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08d7b1a0 for AUX in \u001b[38;5;227mpoisson_solvers.c\u001b[0;36m:\u001b[38;5;192msolve_poisson_DFT\u001b[0;36m:\u001b[0;32m116\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:23\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Getting gravitational potential, periodic boundary conditions (using 32 cores) done.\n",
"[02:24:23\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Acceleration loop, direction 0...\n",
"[02:24:23\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Acceleration loop, direction 0 done.\n",
"[02:24:23\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Acceleration loop, direction 1...\n",
"[02:24:23\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Acceleration loop, direction 1 done.\n",
"[02:24:23\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Acceleration loop, direction 2...\n",
"[02:24:23\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Acceleration loop, direction 2 done.\n",
"[02:24:23\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08c7b190 for g_pad in \u001b[38;5;227mdiagnostic.c\u001b[0;36m:\u001b[38;5;192mcompute_force_on_particle\u001b[0;36m:\u001b[0;32m70\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:23\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08c1b190 for xwopb in \u001b[38;5;227mdiagnostic.c\u001b[0;36m:\u001b[38;5;192mrun_force_diagnostic\u001b[0;36m:\u001b[0;32m227\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:23\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]====|Computing force for particle pair 1, bin 18: [11.341, 19.050] done. Total: 4 / max 60 pairs. Trials 12 / max 100000000.\n",
"[02:24:23\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]====|Computing force for particle pair 2, bin 18: [11.341, 19.050]. Total: 5 / max 60 pairs...\n",
"[02:24:23\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated memory (393204 bytes) at 0x55cb08c1b190 for xwopb in \u001b[38;5;227mdiagnostic.c\u001b[0;36m:\u001b[38;5;192mrun_force_diagnostic\u001b[0;36m:\u001b[0;32m207\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:23\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated memory (1048576 bytes) at 0x55cb08c7b190 for g_pad in \u001b[38;5;227mdiagnostic.c\u001b[0;36m:\u001b[38;5;192mcompute_force_on_particle\u001b[0;36m:\u001b[0;32m32\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:23\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mdp3m0=1.000000\u001b[00m\n",
"[02:24:23\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mdp3m1=1.000000\u001b[00m\n",
"[02:24:23\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mdp3m2=1.000000\u001b[00m\n",
"[02:24:23\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mGiven the available memory, 4095 threads could be allocated and 32 threads will be used in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel\u001b[0;36m:\u001b[0;32m347\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:23\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mGiven the available memory, 4095 threads could be allocated and 32 threads will be used in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m73\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:23\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Getting density contrast (using 32 cores and 32 arrays, parallel routine 1)...\n",
"[02:24:23\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mPerforming CiC binning...\u001b[00m\n",
"[02:24:23\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 0...\u001b[00m\n",
"[02:24:23\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148988000b60 for threadedDensity[28] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:23\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 28...\u001b[00m\n",
"[02:24:23\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148950000b60 for threadedDensity[9] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:23\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148928000b60 for threadedDensity[20] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:23\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 9...\u001b[00m\n",
"[02:24:23\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 20...\u001b[00m\n",
"[02:24:23\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1488e0000b60 for threadedDensity[6] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:23\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1488d8000b60 for threadedDensity[29] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:23\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 6...\u001b[00m\n",
"[02:24:23\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 29...\u001b[00m\n",
"[02:24:23\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148958000b60 for threadedDensity[22] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:23\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148940000b60 for threadedDensity[27] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:23\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 27...\u001b[00m\n",
"[02:24:23\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 22...\u001b[00m\n",
"[02:24:23\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148900000b60 for threadedDensity[16] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:23\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148960000b60 for threadedDensity[13] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:23\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 16...\u001b[00m\n",
"[02:24:23\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 13...\u001b[00m\n",
"[02:24:23\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1489b8000b60 for threadedDensity[4] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:23\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148930000b60 for threadedDensity[14] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:23\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148938000b60 for threadedDensity[18] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:23\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 14...\u001b[00m\n",
"[02:24:23\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 18...\u001b[00m\n",
"[02:24:23\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148948000b60 for threadedDensity[31] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:23\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 4...\u001b[00m\n",
"[02:24:23\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 31...\u001b[00m\n",
"[02:24:23\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148968000b60 for threadedDensity[10] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:23\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148918000b60 for threadedDensity[15] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:23\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 10...\u001b[00m\n",
"[02:24:23\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 15...\u001b[00m\n",
"[02:24:23\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148920000b60 for threadedDensity[12] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:23\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148998000b60 for threadedDensity[25] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:23\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 12...\u001b[00m\n",
"[02:24:23\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 25...\u001b[00m\n",
"[02:24:23\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148980000b60 for threadedDensity[11] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:23\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1488f0000b60 for threadedDensity[24] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:23\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 11...\u001b[00m\n",
"[02:24:23\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 24...\u001b[00m\n",
"[02:24:23\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148908000b60 for threadedDensity[8] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:23\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148990000b60 for threadedDensity[21] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:23\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1489a0000b60 for threadedDensity[3] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:23\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 21...\u001b[00m\n",
"[02:24:23\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 3...\u001b[00m\n",
"[02:24:23\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 8...\u001b[00m\n",
"[02:24:23\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1488dc000b60 for threadedDensity[17] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:23\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148978000b60 for threadedDensity[26] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:23\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 17...\u001b[00m\n",
"[02:24:23\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 26...\u001b[00m\n",
"[02:24:23\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1488e8000b60 for threadedDensity[2] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:23\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1488d0000b60 for threadedDensity[5] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:23\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 2...\u001b[00m\n",
"[02:24:23\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 5...\u001b[00m\n",
"[02:24:23\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148910000b60 for threadedDensity[23] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:23\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1489a8000b60 for threadedDensity[30] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:23\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1488f8000b60 for threadedDensity[19] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:23\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 30...\u001b[00m\n",
"[02:24:23\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 19...\u001b[00m\n",
"[02:24:23\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 23...\u001b[00m\n",
"[02:24:23\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1489b0000b60 for threadedDensity[1] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:23\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148970000b60 for threadedDensity[7] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:23\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 1...\u001b[00m\n",
"[02:24:23\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 7...\u001b[00m\n",
"[02:24:23\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 8 done.\u001b[00m\n",
"[02:24:23\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 23 done.\u001b[00m\n",
"[02:24:23\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 22 done.\u001b[00m\n",
"[02:24:23\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 31 done.\u001b[00m\n",
"[02:24:23\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 29 done.\u001b[00m\n",
"[02:24:23\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 6 done.\u001b[00m\n",
"[02:24:23\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 27 done.\u001b[00m\n",
"[02:24:23\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 4 done.\u001b[00m\n",
"[02:24:23\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 16 done.\u001b[00m\n",
"[02:24:23\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 13 done.\u001b[00m\n",
"[02:24:23\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 25 done.\u001b[00m\n",
"[02:24:23\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 12 done.\u001b[00m\n",
"[02:24:23\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 18 done.\u001b[00m\n",
"[02:24:23\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 14 done.\u001b[00m\n",
"[02:24:23\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 15 done.\u001b[00m\n",
"[02:24:23\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 10 done.\u001b[00m\n",
"[02:24:23\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 20 done.\u001b[00m\n",
"[02:24:23\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 9 done.\u001b[00m\n",
"[02:24:23\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 24 done.\u001b[00m\n",
"[02:24:23\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 11 done.\u001b[00m\n",
"[02:24:23\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 5 done.\u001b[00m\n",
"[02:24:23\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 2 done.\u001b[00m\n",
"[02:24:23\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 21 done.\u001b[00m\n",
"[02:24:23\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 3 done.\u001b[00m\n",
"[02:24:23\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 28 done.\u001b[00m\n",
"[02:24:23\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 0 done.\u001b[00m\n",
"[02:24:23\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 26 done.\u001b[00m\n",
"[02:24:23\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 17 done.\u001b[00m\n",
"[02:24:23\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 1 done.\u001b[00m\n",
"[02:24:23\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 7 done.\u001b[00m\n",
"[02:24:23\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 30 done.\u001b[00m\n",
"[02:24:23\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 19 done.\u001b[00m\n",
"[02:24:23\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mPerforming CiC done.\u001b[00m\n",
"[02:24:23\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mPerforming CiC reduction...\u001b[00m\n",
"[02:24:23\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x1489b0000b60 for threadedDensity[1] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:23\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x1488e8000b60 for threadedDensity[2] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:23\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x1489a0000b60 for threadedDensity[3] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:23\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x1489b8000b60 for threadedDensity[4] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:23\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x1488d0000b60 for threadedDensity[5] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:23\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x1488e0000b60 for threadedDensity[6] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:23\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148970000b60 for threadedDensity[7] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:23\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148908000b60 for threadedDensity[8] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:23\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148950000b60 for threadedDensity[9] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:23\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148968000b60 for threadedDensity[10] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:23\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148980000b60 for threadedDensity[11] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:23\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148920000b60 for threadedDensity[12] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:23\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148960000b60 for threadedDensity[13] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:23\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148930000b60 for threadedDensity[14] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:23\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148918000b60 for threadedDensity[15] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:23\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148900000b60 for threadedDensity[16] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:23\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x1488dc000b60 for threadedDensity[17] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:23\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148938000b60 for threadedDensity[18] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:23\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x1488f8000b60 for threadedDensity[19] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:23\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148928000b60 for threadedDensity[20] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:23\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148990000b60 for threadedDensity[21] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:23\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148958000b60 for threadedDensity[22] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:23\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148910000b60 for threadedDensity[23] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:23\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x1488f0000b60 for threadedDensity[24] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:23\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148998000b60 for threadedDensity[25] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:23\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148978000b60 for threadedDensity[26] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:23\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148940000b60 for threadedDensity[27] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:23\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148988000b60 for threadedDensity[28] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:23\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x1488d8000b60 for threadedDensity[29] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:23\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x1489a8000b60 for threadedDensity[30] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:23\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148948000b60 for threadedDensity[31] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:23\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mPerforming CiC reduction done.\u001b[00m\n",
"[02:24:23\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Getting density contrast (using 32 cores and 32 arrays, parallel routine 1) done.\n",
"[02:24:23\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Getting gravitational potential, periodic boundary conditions (using 32 cores)...\n",
"[02:24:23\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (1081344 bytes) at 0x55cb08d7b1a0 for AUX in \u001b[38;5;227mpoisson_solvers.c\u001b[0;36m:\u001b[38;5;192msolve_poisson_DFT\u001b[0;36m:\u001b[0;32m106\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:23\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08d7b1a0 for AUX in \u001b[38;5;227mpoisson_solvers.c\u001b[0;36m:\u001b[38;5;192msolve_poisson_DFT\u001b[0;36m:\u001b[0;32m116\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:23\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Getting gravitational potential, periodic boundary conditions (using 32 cores) done.\n",
"[02:24:23\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Acceleration loop, direction 0...\n",
"[02:24:24\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Acceleration loop, direction 0 done.\n",
"[02:24:24\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Acceleration loop, direction 1...\n",
"[02:24:24\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Acceleration loop, direction 1 done.\n",
"[02:24:24\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Acceleration loop, direction 2...\n",
"[02:24:24\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Acceleration loop, direction 2 done.\n",
"[02:24:24\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08c7b190 for g_pad in \u001b[38;5;227mdiagnostic.c\u001b[0;36m:\u001b[38;5;192mcompute_force_on_particle\u001b[0;36m:\u001b[0;32m70\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:24\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08c1b190 for xwopb in \u001b[38;5;227mdiagnostic.c\u001b[0;36m:\u001b[38;5;192mrun_force_diagnostic\u001b[0;36m:\u001b[0;32m227\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:24\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]====|Computing force for particle pair 2, bin 18: [11.341, 19.050] done. Total: 5 / max 60 pairs. Trials 28 / max 100000000.\n",
"[02:24:24\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]====|Computing force for particle pair 3, bin 18: [11.341, 19.050]. Total: 6 / max 60 pairs...\n",
"[02:24:24\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated memory (393204 bytes) at 0x55cb08c1b190 for xwopb in \u001b[38;5;227mdiagnostic.c\u001b[0;36m:\u001b[38;5;192mrun_force_diagnostic\u001b[0;36m:\u001b[0;32m207\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:24\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated memory (1048576 bytes) at 0x55cb08c7b190 for g_pad in \u001b[38;5;227mdiagnostic.c\u001b[0;36m:\u001b[38;5;192mcompute_force_on_particle\u001b[0;36m:\u001b[0;32m32\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:24\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mdp3m0=1.000000\u001b[00m\n",
"[02:24:24\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mdp3m1=1.000000\u001b[00m\n",
"[02:24:24\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mdp3m2=1.000000\u001b[00m\n",
"[02:24:24\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mGiven the available memory, 4095 threads could be allocated and 32 threads will be used in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel\u001b[0;36m:\u001b[0;32m347\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:24\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mGiven the available memory, 4095 threads could be allocated and 32 threads will be used in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m73\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:24\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Getting density contrast (using 32 cores and 32 arrays, parallel routine 1)...\n",
"[02:24:24\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mPerforming CiC binning...\u001b[00m\n",
"[02:24:24\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 0...\u001b[00m\n",
"[02:24:24\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148988000b60 for threadedDensity[28] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:24\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 28...\u001b[00m\n",
"[02:24:24\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1488d8000b60 for threadedDensity[29] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:24\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148940000b60 for threadedDensity[27] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:24\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1488e0000b60 for threadedDensity[6] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:24\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 29...\u001b[00m\n",
"[02:24:24\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 6...\u001b[00m\n",
"[02:24:24\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 27...\u001b[00m\n",
"[02:24:24\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148960000b60 for threadedDensity[13] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:24\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148900000b60 for threadedDensity[16] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:24\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 13...\u001b[00m\n",
"[02:24:24\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 16...\u001b[00m\n",
"[02:24:24\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148958000b60 for threadedDensity[22] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:24\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148930000b60 for threadedDensity[14] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:24\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148938000b60 for threadedDensity[18] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:24\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 14...\u001b[00m\n",
"[02:24:24\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 18...\u001b[00m\n",
"[02:24:24\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 22...\u001b[00m\n",
"[02:24:24\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1489b8000b60 for threadedDensity[4] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:24\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148918000b60 for threadedDensity[15] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:24\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148968000b60 for threadedDensity[10] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:24\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 15...\u001b[00m\n",
"[02:24:24\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 10...\u001b[00m\n",
"[02:24:24\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 4...\u001b[00m\n",
"[02:24:24\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148998000b60 for threadedDensity[25] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:24\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148920000b60 for threadedDensity[12] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:24\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 25...\u001b[00m\n",
"[02:24:24\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 12...\u001b[00m\n",
"[02:24:24\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148948000b60 for threadedDensity[31] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:24\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148950000b60 for threadedDensity[9] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:24\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148928000b60 for threadedDensity[20] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:24\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 9...\u001b[00m\n",
"[02:24:24\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 20...\u001b[00m\n",
"[02:24:24\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 31...\u001b[00m\n",
"[02:24:24\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1488f0000b60 for threadedDensity[24] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:24\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148980000b60 for threadedDensity[11] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:24\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 24...\u001b[00m\n",
"[02:24:24\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 11...\u001b[00m\n",
"[02:24:24\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148908000b60 for threadedDensity[8] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:24\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148978000b60 for threadedDensity[26] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:24\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1488dc000b60 for threadedDensity[17] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:24\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 26...\u001b[00m\n",
"[02:24:24\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 17...\u001b[00m\n",
"[02:24:24\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 8...\u001b[00m\n",
"[02:24:24\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1488e8000b60 for threadedDensity[2] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:24\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1488d0000b60 for threadedDensity[5] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:24\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 2...\u001b[00m\n",
"[02:24:24\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 5...\u001b[00m\n",
"[02:24:24\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148990000b60 for threadedDensity[21] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:24\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1489a8000b60 for threadedDensity[30] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:24\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1488f8000b60 for threadedDensity[19] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:24\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 30...\u001b[00m\n",
"[02:24:24\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 19...\u001b[00m\n",
"[02:24:24\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 21...\u001b[00m\n",
"[02:24:24\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1489b0000b60 for threadedDensity[1] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:24\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148970000b60 for threadedDensity[7] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:24\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 1...\u001b[00m\n",
"[02:24:24\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 7...\u001b[00m\n",
"[02:24:24\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1489a0000b60 for threadedDensity[3] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:24\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 3...\u001b[00m\n",
"[02:24:24\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148910000b60 for threadedDensity[23] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:24\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 23...\u001b[00m\n",
"[02:24:24\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 6 done.\u001b[00m\n",
"[02:24:24\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 29 done.\u001b[00m\n",
"[02:24:24\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 16 done.\u001b[00m\n",
"[02:24:24\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 13 done.\u001b[00m\n",
"[02:24:24\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 31 done.\u001b[00m\n",
"[02:24:24\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 27 done.\u001b[00m\n",
"[02:24:24\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 4 done.\u001b[00m\n",
"[02:24:24\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 25 done.\u001b[00m\n",
"[02:24:24\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 12 done.\u001b[00m\n",
"[02:24:24\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 18 done.\u001b[00m\n",
"[02:24:24\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 14 done.\u001b[00m\n",
"[02:24:24\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 10 done.\u001b[00m\n",
"[02:24:24\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 15 done.\u001b[00m\n",
"[02:24:24\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 8 done.\u001b[00m\n",
"[02:24:24\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 23 done.\u001b[00m\n",
"[02:24:24\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 11 done.\u001b[00m\n",
"[02:24:24\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 24 done.\u001b[00m\n",
"[02:24:24\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 2 done.\u001b[00m\n",
"[02:24:24\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 5 done.\u001b[00m\n",
"[02:24:24\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 9 done.\u001b[00m\n",
"[02:24:24\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 20 done.\u001b[00m\n",
"[02:24:24\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 26 done.\u001b[00m\n",
"[02:24:24\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 17 done.\u001b[00m\n",
"[02:24:24\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 21 done.\u001b[00m\n",
"[02:24:24\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 3 done.\u001b[00m\n",
"[02:24:24\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 7 done.\u001b[00m\n",
"[02:24:24\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 1 done.\u001b[00m\n",
"[02:24:24\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 28 done.\u001b[00m\n",
"[02:24:24\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 30 done.\u001b[00m\n",
"[02:24:24\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 19 done.\u001b[00m\n",
"[02:24:24\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 22 done.\u001b[00m\n",
"[02:24:24\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 0 done.\u001b[00m\n",
"[02:24:24\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mPerforming CiC done.\u001b[00m\n",
"[02:24:24\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mPerforming CiC reduction...\u001b[00m\n",
"[02:24:24\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x1489b0000b60 for threadedDensity[1] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:24\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x1488e8000b60 for threadedDensity[2] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:24\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x1489a0000b60 for threadedDensity[3] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:24\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x1489b8000b60 for threadedDensity[4] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:24\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x1488d0000b60 for threadedDensity[5] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:24\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x1488e0000b60 for threadedDensity[6] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:24\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148970000b60 for threadedDensity[7] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:24\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148908000b60 for threadedDensity[8] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:24\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148950000b60 for threadedDensity[9] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:24\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148968000b60 for threadedDensity[10] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:24\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148980000b60 for threadedDensity[11] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:24\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148920000b60 for threadedDensity[12] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:24\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148960000b60 for threadedDensity[13] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:24\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148930000b60 for threadedDensity[14] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:24\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148918000b60 for threadedDensity[15] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:24\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148900000b60 for threadedDensity[16] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:24\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x1488dc000b60 for threadedDensity[17] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:24\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148938000b60 for threadedDensity[18] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:24\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x1488f8000b60 for threadedDensity[19] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:24\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148928000b60 for threadedDensity[20] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:24\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148990000b60 for threadedDensity[21] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:24\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148958000b60 for threadedDensity[22] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:24\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148910000b60 for threadedDensity[23] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:24\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x1488f0000b60 for threadedDensity[24] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:24\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148998000b60 for threadedDensity[25] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:24\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148978000b60 for threadedDensity[26] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:24\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148940000b60 for threadedDensity[27] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:24\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148988000b60 for threadedDensity[28] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:24\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x1488d8000b60 for threadedDensity[29] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:24\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x1489a8000b60 for threadedDensity[30] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:24\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148948000b60 for threadedDensity[31] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:24\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mPerforming CiC reduction done.\u001b[00m\n",
"[02:24:24\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Getting density contrast (using 32 cores and 32 arrays, parallel routine 1) done.\n",
"[02:24:24\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Getting gravitational potential, periodic boundary conditions (using 32 cores)...\n",
"[02:24:24\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (1081344 bytes) at 0x55cb08d7b1a0 for AUX in \u001b[38;5;227mpoisson_solvers.c\u001b[0;36m:\u001b[38;5;192msolve_poisson_DFT\u001b[0;36m:\u001b[0;32m106\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:24\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08d7b1a0 for AUX in \u001b[38;5;227mpoisson_solvers.c\u001b[0;36m:\u001b[38;5;192msolve_poisson_DFT\u001b[0;36m:\u001b[0;32m116\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:24\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Getting gravitational potential, periodic boundary conditions (using 32 cores) done.\n",
"[02:24:24\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Acceleration loop, direction 0...\n",
"[02:24:24\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Acceleration loop, direction 0 done.\n",
"[02:24:24\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Acceleration loop, direction 1...\n",
"[02:24:24\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Acceleration loop, direction 1 done.\n",
"[02:24:24\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Acceleration loop, direction 2...\n",
"[02:24:24\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Acceleration loop, direction 2 done.\n",
"[02:24:24\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08c7b190 for g_pad in \u001b[38;5;227mdiagnostic.c\u001b[0;36m:\u001b[38;5;192mcompute_force_on_particle\u001b[0;36m:\u001b[0;32m70\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:24\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08c1b190 for xwopb in \u001b[38;5;227mdiagnostic.c\u001b[0;36m:\u001b[38;5;192mrun_force_diagnostic\u001b[0;36m:\u001b[0;32m227\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:24\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]====|Computing force for particle pair 3, bin 18: [11.341, 19.050] done. Total: 6 / max 60 pairs. Trials 31 / max 100000000.\n",
"[02:24:24\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]====|Computing force for particle pair 1, bin 17: [6.751, 11.341]. Total: 7 / max 60 pairs...\n",
"[02:24:24\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated memory (393204 bytes) at 0x55cb08c1b190 for xwopb in \u001b[38;5;227mdiagnostic.c\u001b[0;36m:\u001b[38;5;192mrun_force_diagnostic\u001b[0;36m:\u001b[0;32m207\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:24\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated memory (1048576 bytes) at 0x55cb08c7b190 for g_pad in \u001b[38;5;227mdiagnostic.c\u001b[0;36m:\u001b[38;5;192mcompute_force_on_particle\u001b[0;36m:\u001b[0;32m32\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:24\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mdp3m0=1.000000\u001b[00m\n",
"[02:24:24\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mdp3m1=1.000000\u001b[00m\n",
"[02:24:24\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mdp3m2=1.000000\u001b[00m\n",
"[02:24:24\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mGiven the available memory, 4095 threads could be allocated and 32 threads will be used in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel\u001b[0;36m:\u001b[0;32m347\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:24\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mGiven the available memory, 4095 threads could be allocated and 32 threads will be used in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m73\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:24\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Getting density contrast (using 32 cores and 32 arrays, parallel routine 1)...\n",
"[02:24:24\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mPerforming CiC binning...\u001b[00m\n",
"[02:24:24\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 0...\u001b[00m\n",
"[02:24:24\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148988000b60 for threadedDensity[28] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:24\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 28...\u001b[00m\n",
"[02:24:24\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148940000b60 for threadedDensity[27] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:24\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148950000b60 for threadedDensity[9] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:24\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148928000b60 for threadedDensity[20] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:24\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 9...\u001b[00m\n",
"[02:24:24\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 20...\u001b[00m\n",
"[02:24:24\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1488e0000b60 for threadedDensity[6] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:24\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1488d8000b60 for threadedDensity[29] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:24\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 6...\u001b[00m\n",
"[02:24:24\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 29...\u001b[00m\n",
"[02:24:24\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 27...\u001b[00m\n",
"[02:24:24\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148958000b60 for threadedDensity[22] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:24\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148960000b60 for threadedDensity[13] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:24\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148900000b60 for threadedDensity[16] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:24\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 13...\u001b[00m\n",
"[02:24:24\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 16...\u001b[00m\n",
"[02:24:24\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 22...\u001b[00m\n",
"[02:24:24\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148930000b60 for threadedDensity[14] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:24\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148938000b60 for threadedDensity[18] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:24\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 14...\u001b[00m\n",
"[02:24:24\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 18...\u001b[00m\n",
"[02:24:24\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148948000b60 for threadedDensity[31] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:24\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1489b8000b60 for threadedDensity[4] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:24\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 31...\u001b[00m\n",
"[02:24:24\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 4...\u001b[00m\n",
"[02:24:24\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148918000b60 for threadedDensity[15] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:24\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148968000b60 for threadedDensity[10] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:24\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 15...\u001b[00m\n",
"[02:24:24\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 10...\u001b[00m\n",
"[02:24:24\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1488f0000b60 for threadedDensity[24] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:24\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148980000b60 for threadedDensity[11] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:24\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 24...\u001b[00m\n",
"[02:24:24\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 11...\u001b[00m\n",
"[02:24:24\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1488d0000b60 for threadedDensity[5] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:24\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1488e8000b60 for threadedDensity[2] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:24\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 5...\u001b[00m\n",
"[02:24:24\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 2...\u001b[00m\n",
"[02:24:24\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148920000b60 for threadedDensity[12] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:24\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148908000b60 for threadedDensity[8] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:24\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 12...\u001b[00m\n",
"[02:24:24\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148998000b60 for threadedDensity[25] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:24\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 8...\u001b[00m\n",
"[02:24:24\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 25...\u001b[00m\n",
"[02:24:24\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148990000b60 for threadedDensity[21] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:24\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148978000b60 for threadedDensity[26] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:24\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1488dc000b60 for threadedDensity[17] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:24\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 26...\u001b[00m\n",
"[02:24:24\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 17...\u001b[00m\n",
"[02:24:24\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 21...\u001b[00m\n",
"[02:24:24\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148970000b60 for threadedDensity[7] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:24\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1489b0000b60 for threadedDensity[1] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:24\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 7...\u001b[00m\n",
"[02:24:24\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 1...\u001b[00m\n",
"[02:24:24\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148910000b60 for threadedDensity[23] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:24\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1489a0000b60 for threadedDensity[3] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:24\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 23...\u001b[00m\n",
"[02:24:24\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 3...\u001b[00m\n",
"[02:24:24\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1489a8000b60 for threadedDensity[30] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:24\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1488f8000b60 for threadedDensity[19] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:24\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 30...\u001b[00m\n",
"[02:24:24\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 19...\u001b[00m\n",
"[02:24:24\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 8 done.\u001b[00m\n",
"[02:24:24\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 23 done.\u001b[00m\n",
"[02:24:24\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 31 done.\u001b[00m\n",
"[02:24:24\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 22 done.\u001b[00m\n",
"[02:24:24\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 6 done.\u001b[00m\n",
"[02:24:24\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 29 done.\u001b[00m\n",
"[02:24:24\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 13 done.\u001b[00m\n",
"[02:24:24\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 16 done.\u001b[00m\n",
"[02:24:24\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 4 done.\u001b[00m\n",
"[02:24:24\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 27 done.\u001b[00m\n",
"[02:24:24\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 25 done.\u001b[00m\n",
"[02:24:24\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 12 done.\u001b[00m\n",
"[02:24:24\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 18 done.\u001b[00m\n",
"[02:24:24\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 14 done.\u001b[00m\n",
"[02:24:24\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 15 done.\u001b[00m\n",
"[02:24:24\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 10 done.\u001b[00m\n",
"[02:24:24\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 20 done.\u001b[00m\n",
"[02:24:24\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 9 done.\u001b[00m\n",
"[02:24:24\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 17 done.\u001b[00m\n",
"[02:24:24\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 26 done.\u001b[00m\n",
"[02:24:24\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 24 done.\u001b[00m\n",
"[02:24:24\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 11 done.\u001b[00m\n",
"[02:24:24\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 2 done.\u001b[00m\n",
"[02:24:24\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 5 done.\u001b[00m\n",
"[02:24:24\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 21 done.\u001b[00m\n",
"[02:24:24\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 3 done.\u001b[00m\n",
"[02:24:24\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 19 done.\u001b[00m\n",
"[02:24:24\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 30 done.\u001b[00m\n",
"[02:24:24\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 0 done.\u001b[00m\n",
"[02:24:24\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 28 done.\u001b[00m\n",
"[02:24:24\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 1 done.\u001b[00m\n",
"[02:24:24\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 7 done.\u001b[00m\n",
"[02:24:24\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mPerforming CiC done.\u001b[00m\n",
"[02:24:24\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mPerforming CiC reduction...\u001b[00m\n",
"[02:24:24\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x1489b0000b60 for threadedDensity[1] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:24\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x1488e8000b60 for threadedDensity[2] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:24\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x1489a0000b60 for threadedDensity[3] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:24\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x1489b8000b60 for threadedDensity[4] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:24\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x1488d0000b60 for threadedDensity[5] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:24\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x1488e0000b60 for threadedDensity[6] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:24\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148970000b60 for threadedDensity[7] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:24\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148908000b60 for threadedDensity[8] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:24\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148950000b60 for threadedDensity[9] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:24\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148968000b60 for threadedDensity[10] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:24\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148980000b60 for threadedDensity[11] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:24\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148920000b60 for threadedDensity[12] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:24\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148960000b60 for threadedDensity[13] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:24\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148930000b60 for threadedDensity[14] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:24\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148918000b60 for threadedDensity[15] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:24\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148900000b60 for threadedDensity[16] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:24\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x1488dc000b60 for threadedDensity[17] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:24\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148938000b60 for threadedDensity[18] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:24\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x1488f8000b60 for threadedDensity[19] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:24\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148928000b60 for threadedDensity[20] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:24\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148990000b60 for threadedDensity[21] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:24\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148958000b60 for threadedDensity[22] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:24\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148910000b60 for threadedDensity[23] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:24\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x1488f0000b60 for threadedDensity[24] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:24\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148998000b60 for threadedDensity[25] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:24\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148978000b60 for threadedDensity[26] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:24\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148940000b60 for threadedDensity[27] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:24\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148988000b60 for threadedDensity[28] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:24\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x1488d8000b60 for threadedDensity[29] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:24\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x1489a8000b60 for threadedDensity[30] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:24\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148948000b60 for threadedDensity[31] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:24\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mPerforming CiC reduction done.\u001b[00m\n",
"[02:24:24\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Getting density contrast (using 32 cores and 32 arrays, parallel routine 1) done.\n",
"[02:24:24\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Getting gravitational potential, periodic boundary conditions (using 32 cores)...\n",
"[02:24:24\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (1081344 bytes) at 0x55cb08d7b1a0 for AUX in \u001b[38;5;227mpoisson_solvers.c\u001b[0;36m:\u001b[38;5;192msolve_poisson_DFT\u001b[0;36m:\u001b[0;32m106\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:24\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08d7b1a0 for AUX in \u001b[38;5;227mpoisson_solvers.c\u001b[0;36m:\u001b[38;5;192msolve_poisson_DFT\u001b[0;36m:\u001b[0;32m116\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:24\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Getting gravitational potential, periodic boundary conditions (using 32 cores) done.\n",
"[02:24:24\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Acceleration loop, direction 0...\n",
"[02:24:24\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Acceleration loop, direction 0 done.\n",
"[02:24:24\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Acceleration loop, direction 1...\n",
"[02:24:24\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Acceleration loop, direction 1 done.\n",
"[02:24:24\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Acceleration loop, direction 2...\n",
"[02:24:24\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Acceleration loop, direction 2 done.\n",
"[02:24:24\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08c7b190 for g_pad in \u001b[38;5;227mdiagnostic.c\u001b[0;36m:\u001b[38;5;192mcompute_force_on_particle\u001b[0;36m:\u001b[0;32m70\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:24\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08c1b190 for xwopb in \u001b[38;5;227mdiagnostic.c\u001b[0;36m:\u001b[38;5;192mrun_force_diagnostic\u001b[0;36m:\u001b[0;32m227\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:24\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]====|Computing force for particle pair 1, bin 17: [6.751, 11.341] done. Total: 7 / max 60 pairs. Trials 50 / max 100000000.\n",
"[02:24:24\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]====|Computing force for particle pair 2, bin 17: [6.751, 11.341]. Total: 8 / max 60 pairs...\n",
"[02:24:24\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated memory (393204 bytes) at 0x55cb08c1b190 for xwopb in \u001b[38;5;227mdiagnostic.c\u001b[0;36m:\u001b[38;5;192mrun_force_diagnostic\u001b[0;36m:\u001b[0;32m207\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:24\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated memory (1048576 bytes) at 0x55cb08c7b190 for g_pad in \u001b[38;5;227mdiagnostic.c\u001b[0;36m:\u001b[38;5;192mcompute_force_on_particle\u001b[0;36m:\u001b[0;32m32\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:24\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mdp3m0=1.000000\u001b[00m\n",
"[02:24:24\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mdp3m1=1.000000\u001b[00m\n",
"[02:24:24\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mdp3m2=1.000000\u001b[00m\n",
"[02:24:24\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mGiven the available memory, 4095 threads could be allocated and 32 threads will be used in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel\u001b[0;36m:\u001b[0;32m347\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:24\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mGiven the available memory, 4095 threads could be allocated and 32 threads will be used in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m73\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:24\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Getting density contrast (using 32 cores and 32 arrays, parallel routine 1)...\n",
"[02:24:24\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mPerforming CiC binning...\u001b[00m\n",
"[02:24:24\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 0...\u001b[00m\n",
"[02:24:24\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148988000b60 for threadedDensity[28] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:24\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 28...\u001b[00m\n",
"[02:24:24\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148968000b60 for threadedDensity[10] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:24\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148918000b60 for threadedDensity[15] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:24\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 10...\u001b[00m\n",
"[02:24:24\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 15...\u001b[00m\n",
"[02:24:24\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1488d8000b60 for threadedDensity[29] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:24\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1488e0000b60 for threadedDensity[6] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:24\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 29...\u001b[00m\n",
"[02:24:24\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 6...\u001b[00m\n",
"[02:24:24\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148960000b60 for threadedDensity[13] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:24\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148900000b60 for threadedDensity[16] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:24\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 13...\u001b[00m\n",
"[02:24:24\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 16...\u001b[00m\n",
"[02:24:24\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148938000b60 for threadedDensity[18] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:24\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148930000b60 for threadedDensity[14] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:24\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 18...\u001b[00m\n",
"[02:24:24\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 14...\u001b[00m\n",
"[02:24:24\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148940000b60 for threadedDensity[27] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:24\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1488f0000b60 for threadedDensity[24] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:24\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148980000b60 for threadedDensity[11] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:24\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 24...\u001b[00m\n",
"[02:24:24\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 11...\u001b[00m\n",
"[02:24:24\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 27...\u001b[00m\n",
"[02:24:24\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148990000b60 for threadedDensity[21] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:24\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148948000b60 for threadedDensity[31] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:24\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1489b8000b60 for threadedDensity[4] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:24\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 31...\u001b[00m\n",
"[02:24:24\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 4...\u001b[00m\n",
"[02:24:24\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148908000b60 for threadedDensity[8] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:24\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148950000b60 for threadedDensity[9] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:24\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148928000b60 for threadedDensity[20] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:24\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 9...\u001b[00m\n",
"[02:24:24\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 20...\u001b[00m\n",
"[02:24:24\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148920000b60 for threadedDensity[12] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:24\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 8...\u001b[00m\n",
"[02:24:24\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 12...\u001b[00m\n",
"[02:24:24\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1488f8000b60 for threadedDensity[19] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:24\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148998000b60 for threadedDensity[25] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:24\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 21...\u001b[00m\n",
"[02:24:24\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 25...\u001b[00m\n",
"[02:24:24\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148978000b60 for threadedDensity[26] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:24\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1488dc000b60 for threadedDensity[17] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:24\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 26...\u001b[00m\n",
"[02:24:24\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 17...\u001b[00m\n",
"[02:24:24\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1488d0000b60 for threadedDensity[5] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:24\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1488e8000b60 for threadedDensity[2] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:24\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 5...\u001b[00m\n",
"[02:24:24\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 2...\u001b[00m\n",
"[02:24:24\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148910000b60 for threadedDensity[23] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:24\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1489a0000b60 for threadedDensity[3] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:24\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 23...\u001b[00m\n",
"[02:24:24\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1489b0000b60 for threadedDensity[1] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:24\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148970000b60 for threadedDensity[7] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:24\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 1...\u001b[00m\n",
"[02:24:24\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 7...\u001b[00m\n",
"[02:24:24\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 3...\u001b[00m\n",
"[02:24:24\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 19...\u001b[00m\n",
"[02:24:24\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148958000b60 for threadedDensity[22] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:24\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 22...\u001b[00m\n",
"[02:24:24\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1489a8000b60 for threadedDensity[30] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:24\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 30...\u001b[00m\n",
"[02:24:24\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 19 done.\u001b[00m\n",
"[02:24:24\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 30 done.\u001b[00m\n",
"[02:24:24\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 31 done.\u001b[00m\n",
"[02:24:24\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 22 done.\u001b[00m\n",
"[02:24:24\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 27 done.\u001b[00m\n",
"[02:24:24\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 4 done.\u001b[00m\n",
"[02:24:24\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 29 done.\u001b[00m\n",
"[02:24:24\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 6 done.\u001b[00m\n",
"[02:24:24\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 16 done.\u001b[00m\n",
"[02:24:24\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 13 done.\u001b[00m\n",
"[02:24:24\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 14 done.\u001b[00m\n",
"[02:24:24\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 18 done.\u001b[00m\n",
"[02:24:24\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 25 done.\u001b[00m\n",
"[02:24:24\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 12 done.\u001b[00m\n",
"[02:24:24\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 8 done.\u001b[00m\n",
"[02:24:24\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 23 done.\u001b[00m\n",
"[02:24:24\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 10 done.\u001b[00m\n",
"[02:24:24\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 15 done.\u001b[00m\n",
"[02:24:24\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 9 done.\u001b[00m\n",
"[02:24:24\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 20 done.\u001b[00m\n",
"[02:24:24\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 21 done.\u001b[00m\n",
"[02:24:24\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 3 done.\u001b[00m\n",
"[02:24:24\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 2 done.\u001b[00m\n",
"[02:24:24\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 5 done.\u001b[00m\n",
"[02:24:24\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 24 done.\u001b[00m\n",
"[02:24:24\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 11 done.\u001b[00m\n",
"[02:24:24\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 17 done.\u001b[00m\n",
"[02:24:24\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 26 done.\u001b[00m\n",
"[02:24:24\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 28 done.\u001b[00m\n",
"[02:24:24\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 1 done.\u001b[00m\n",
"[02:24:24\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 7 done.\u001b[00m\n",
"[02:24:24\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 0 done.\u001b[00m\n",
"[02:24:24\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mPerforming CiC done.\u001b[00m\n",
"[02:24:24\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mPerforming CiC reduction...\u001b[00m\n",
"[02:24:24\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x1489b0000b60 for threadedDensity[1] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:24\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x1488e8000b60 for threadedDensity[2] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:24\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x1489a0000b60 for threadedDensity[3] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:24\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x1489b8000b60 for threadedDensity[4] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:24\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x1488d0000b60 for threadedDensity[5] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:24\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x1488e0000b60 for threadedDensity[6] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:24\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148970000b60 for threadedDensity[7] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:24\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148908000b60 for threadedDensity[8] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:24\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148950000b60 for threadedDensity[9] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:24\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148968000b60 for threadedDensity[10] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:24\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148980000b60 for threadedDensity[11] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:24\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148920000b60 for threadedDensity[12] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:24\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148960000b60 for threadedDensity[13] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:24\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148930000b60 for threadedDensity[14] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:24\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148918000b60 for threadedDensity[15] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:24\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148900000b60 for threadedDensity[16] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:24\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x1488dc000b60 for threadedDensity[17] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:24\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148938000b60 for threadedDensity[18] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:24\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x1488f8000b60 for threadedDensity[19] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:24\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148928000b60 for threadedDensity[20] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:24\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148990000b60 for threadedDensity[21] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:24\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148958000b60 for threadedDensity[22] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:24\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148910000b60 for threadedDensity[23] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:24\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x1488f0000b60 for threadedDensity[24] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:24\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148998000b60 for threadedDensity[25] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:24\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148978000b60 for threadedDensity[26] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:24\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148940000b60 for threadedDensity[27] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:24\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148988000b60 for threadedDensity[28] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:24\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x1488d8000b60 for threadedDensity[29] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:24\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x1489a8000b60 for threadedDensity[30] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:24\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148948000b60 for threadedDensity[31] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:24\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mPerforming CiC reduction done.\u001b[00m\n",
"[02:24:24\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Getting density contrast (using 32 cores and 32 arrays, parallel routine 1) done.\n",
"[02:24:24\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Getting gravitational potential, periodic boundary conditions (using 32 cores)...\n",
"[02:24:24\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (1081344 bytes) at 0x55cb08d7b1a0 for AUX in \u001b[38;5;227mpoisson_solvers.c\u001b[0;36m:\u001b[38;5;192msolve_poisson_DFT\u001b[0;36m:\u001b[0;32m106\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:24\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08d7b1a0 for AUX in \u001b[38;5;227mpoisson_solvers.c\u001b[0;36m:\u001b[38;5;192msolve_poisson_DFT\u001b[0;36m:\u001b[0;32m116\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:24\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Getting gravitational potential, periodic boundary conditions (using 32 cores) done.\n",
"[02:24:24\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Acceleration loop, direction 0...\n",
"[02:24:24\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Acceleration loop, direction 0 done.\n",
"[02:24:24\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Acceleration loop, direction 1...\n",
"[02:24:24\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Acceleration loop, direction 1 done.\n",
"[02:24:24\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Acceleration loop, direction 2...\n",
"[02:24:24\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Acceleration loop, direction 2 done.\n",
"[02:24:24\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08c7b190 for g_pad in \u001b[38;5;227mdiagnostic.c\u001b[0;36m:\u001b[38;5;192mcompute_force_on_particle\u001b[0;36m:\u001b[0;32m70\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:24\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08c1b190 for xwopb in \u001b[38;5;227mdiagnostic.c\u001b[0;36m:\u001b[38;5;192mrun_force_diagnostic\u001b[0;36m:\u001b[0;32m227\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:24\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]====|Computing force for particle pair 2, bin 17: [6.751, 11.341] done. Total: 8 / max 60 pairs. Trials 63 / max 100000000.\n",
"[02:24:24\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]====|Computing force for particle pair 3, bin 17: [6.751, 11.341]. Total: 9 / max 60 pairs...\n",
"[02:24:24\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated memory (393204 bytes) at 0x55cb08c1b190 for xwopb in \u001b[38;5;227mdiagnostic.c\u001b[0;36m:\u001b[38;5;192mrun_force_diagnostic\u001b[0;36m:\u001b[0;32m207\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:24\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated memory (1048576 bytes) at 0x55cb08c7b190 for g_pad in \u001b[38;5;227mdiagnostic.c\u001b[0;36m:\u001b[38;5;192mcompute_force_on_particle\u001b[0;36m:\u001b[0;32m32\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:24\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mdp3m0=1.000000\u001b[00m\n",
"[02:24:24\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mdp3m1=1.000000\u001b[00m\n",
"[02:24:24\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mdp3m2=1.000000\u001b[00m\n",
"[02:24:24\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mGiven the available memory, 4095 threads could be allocated and 32 threads will be used in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel\u001b[0;36m:\u001b[0;32m347\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:24\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mGiven the available memory, 4095 threads could be allocated and 32 threads will be used in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m73\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:24\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Getting density contrast (using 32 cores and 32 arrays, parallel routine 1)...\n",
"[02:24:24\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mPerforming CiC binning...\u001b[00m\n",
"[02:24:24\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 0...\u001b[00m\n",
"[02:24:24\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148968000b60 for threadedDensity[10] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:24\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148940000b60 for threadedDensity[27] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:24\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1488f8000b60 for threadedDensity[19] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:24\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1488e0000b60 for threadedDensity[6] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:24\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1488d8000b60 for threadedDensity[29] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:24\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 6...\u001b[00m\n",
"[02:24:24\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 29...\u001b[00m\n",
"[02:24:24\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148900000b60 for threadedDensity[16] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:24\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148958000b60 for threadedDensity[22] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:24\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148930000b60 for threadedDensity[14] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:24\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148938000b60 for threadedDensity[18] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:24\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 14...\u001b[00m\n",
"[02:24:24\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 18...\u001b[00m\n",
"[02:24:24\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 22...\u001b[00m\n",
"[02:24:24\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 27...\u001b[00m\n",
"[02:24:24\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1489b8000b60 for threadedDensity[4] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:24\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 16...\u001b[00m\n",
"[02:24:24\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 4...\u001b[00m\n",
"[02:24:24\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148918000b60 for threadedDensity[15] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:24\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 10...\u001b[00m\n",
"[02:24:24\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 15...\u001b[00m\n",
"[02:24:24\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148950000b60 for threadedDensity[9] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:24\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148928000b60 for threadedDensity[20] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:24\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 9...\u001b[00m\n",
"[02:24:24\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 20...\u001b[00m\n",
"[02:24:24\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1488dc000b60 for threadedDensity[17] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:24\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148978000b60 for threadedDensity[26] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:24\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 17...\u001b[00m\n",
"[02:24:24\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 26...\u001b[00m\n",
"[02:24:24\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148920000b60 for threadedDensity[12] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:24\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148998000b60 for threadedDensity[25] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:24\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 12...\u001b[00m\n",
"[02:24:24\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 25...\u001b[00m\n",
"[02:24:24\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148948000b60 for threadedDensity[31] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:24\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148910000b60 for threadedDensity[23] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:24\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148908000b60 for threadedDensity[8] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:24\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 23...\u001b[00m\n",
"[02:24:24\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 8...\u001b[00m\n",
"[02:24:24\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 31...\u001b[00m\n",
"[02:24:24\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1488e8000b60 for threadedDensity[2] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:24\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1488d0000b60 for threadedDensity[5] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:24\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 2...\u001b[00m\n",
"[02:24:24\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 5...\u001b[00m\n",
"[02:24:24\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1488f0000b60 for threadedDensity[24] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:24\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148980000b60 for threadedDensity[11] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:24\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 24...\u001b[00m\n",
"[02:24:24\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 11...\u001b[00m\n",
"[02:24:24\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148960000b60 for threadedDensity[13] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:24\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1489b0000b60 for threadedDensity[1] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:24\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 13...\u001b[00m\n",
"[02:24:24\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 1...\u001b[00m\n",
"[02:24:24\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148990000b60 for threadedDensity[21] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:24\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 19...\u001b[00m\n",
"[02:24:24\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1489a8000b60 for threadedDensity[30] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:24\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148970000b60 for threadedDensity[7] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:24\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 30...\u001b[00m\n",
"[02:24:24\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 7...\u001b[00m\n",
"[02:24:24\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 21...\u001b[00m\n",
"[02:24:24\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1489a0000b60 for threadedDensity[3] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:24\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 3...\u001b[00m\n",
"[02:24:24\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148988000b60 for threadedDensity[28] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:24\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 28...\u001b[00m\n",
"[02:24:24\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 0 done.\u001b[00m\n",
"[02:24:24\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 19 done.\u001b[00m\n",
"[02:24:24\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 29 done.\u001b[00m\n",
"[02:24:24\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 6 done.\u001b[00m\n",
"[02:24:24\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 22 done.\u001b[00m\n",
"[02:24:24\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 31 done.\u001b[00m\n",
"[02:24:24\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 4 done.\u001b[00m\n",
"[02:24:24\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 27 done.\u001b[00m\n",
"[02:24:24\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 16 done.\u001b[00m\n",
"[02:24:24\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 12 done.\u001b[00m\n",
"[02:24:24\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 25 done.\u001b[00m\n",
"[02:24:24\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 14 done.\u001b[00m\n",
"[02:24:24\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 18 done.\u001b[00m\n",
"[02:24:24\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 10 done.\u001b[00m\n",
"[02:24:24\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 15 done.\u001b[00m\n",
"[02:24:24\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 23 done.\u001b[00m\n",
"[02:24:24\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 8 done.\u001b[00m\n",
"[02:24:24\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 9 done.\u001b[00m\n",
"[02:24:24\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 20 done.\u001b[00m\n",
"[02:24:24\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 26 done.\u001b[00m\n",
"[02:24:24\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 17 done.\u001b[00m\n",
"[02:24:24\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 21 done.\u001b[00m\n",
"[02:24:24\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 3 done.\u001b[00m\n",
"[02:24:24\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 24 done.\u001b[00m\n",
"[02:24:24\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 11 done.\u001b[00m\n",
"[02:24:24\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 2 done.\u001b[00m\n",
"[02:24:24\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 5 done.\u001b[00m\n",
"[02:24:24\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 1 done.\u001b[00m\n",
"[02:24:24\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 28 done.\u001b[00m\n",
"[02:24:24\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 7 done.\u001b[00m\n",
"[02:24:24\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 30 done.\u001b[00m\n",
"[02:24:24\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 13 done.\u001b[00m\n",
"[02:24:24\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mPerforming CiC done.\u001b[00m\n",
"[02:24:24\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mPerforming CiC reduction...\u001b[00m\n",
"[02:24:24\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x1489b0000b60 for threadedDensity[1] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:24\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x1488e8000b60 for threadedDensity[2] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:24\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x1489a0000b60 for threadedDensity[3] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:24\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x1489b8000b60 for threadedDensity[4] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:24\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x1488d0000b60 for threadedDensity[5] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:24\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x1488e0000b60 for threadedDensity[6] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:24\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148970000b60 for threadedDensity[7] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:24\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148908000b60 for threadedDensity[8] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:24\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148950000b60 for threadedDensity[9] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:24\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148968000b60 for threadedDensity[10] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:24\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148980000b60 for threadedDensity[11] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:24\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148920000b60 for threadedDensity[12] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:24\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148960000b60 for threadedDensity[13] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:24\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148930000b60 for threadedDensity[14] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:24\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148918000b60 for threadedDensity[15] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:24\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148900000b60 for threadedDensity[16] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:24\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x1488dc000b60 for threadedDensity[17] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:24\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148938000b60 for threadedDensity[18] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:24\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x1488f8000b60 for threadedDensity[19] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:24\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148928000b60 for threadedDensity[20] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:24\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148990000b60 for threadedDensity[21] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:24\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148958000b60 for threadedDensity[22] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:24\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148910000b60 for threadedDensity[23] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:24\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x1488f0000b60 for threadedDensity[24] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:24\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148998000b60 for threadedDensity[25] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:24\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148978000b60 for threadedDensity[26] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:24\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148940000b60 for threadedDensity[27] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:24\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148988000b60 for threadedDensity[28] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:24\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x1488d8000b60 for threadedDensity[29] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:24\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x1489a8000b60 for threadedDensity[30] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:24\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148948000b60 for threadedDensity[31] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:24\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mPerforming CiC reduction done.\u001b[00m\n",
"[02:24:24\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Getting density contrast (using 32 cores and 32 arrays, parallel routine 1) done.\n",
"[02:24:24\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Getting gravitational potential, periodic boundary conditions (using 32 cores)...\n",
"[02:24:24\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (1081344 bytes) at 0x55cb08d7b1a0 for AUX in \u001b[38;5;227mpoisson_solvers.c\u001b[0;36m:\u001b[38;5;192msolve_poisson_DFT\u001b[0;36m:\u001b[0;32m106\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:24\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08d7b1a0 for AUX in \u001b[38;5;227mpoisson_solvers.c\u001b[0;36m:\u001b[38;5;192msolve_poisson_DFT\u001b[0;36m:\u001b[0;32m116\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:24\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Getting gravitational potential, periodic boundary conditions (using 32 cores) done.\n",
"[02:24:24\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Acceleration loop, direction 0...\n",
"[02:24:24\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Acceleration loop, direction 0 done.\n",
"[02:24:24\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Acceleration loop, direction 1...\n",
"[02:24:24\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Acceleration loop, direction 1 done.\n",
"[02:24:24\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Acceleration loop, direction 2...\n",
"[02:24:25\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Acceleration loop, direction 2 done.\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08c7b190 for g_pad in \u001b[38;5;227mdiagnostic.c\u001b[0;36m:\u001b[38;5;192mcompute_force_on_particle\u001b[0;36m:\u001b[0;32m70\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08c1b190 for xwopb in \u001b[38;5;227mdiagnostic.c\u001b[0;36m:\u001b[38;5;192mrun_force_diagnostic\u001b[0;36m:\u001b[0;32m227\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]====|Computing force for particle pair 3, bin 17: [6.751, 11.341] done. Total: 9 / max 60 pairs. Trials 76 / max 100000000.\n",
"[02:24:25\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]====|Computing force for particle pair 1, bin 15: [2.393, 4.019]. Total: 10 / max 60 pairs...\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated memory (393204 bytes) at 0x55cb08c1b190 for xwopb in \u001b[38;5;227mdiagnostic.c\u001b[0;36m:\u001b[38;5;192mrun_force_diagnostic\u001b[0;36m:\u001b[0;32m207\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated memory (1048576 bytes) at 0x55cb08c7b190 for g_pad in \u001b[38;5;227mdiagnostic.c\u001b[0;36m:\u001b[38;5;192mcompute_force_on_particle\u001b[0;36m:\u001b[0;32m32\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mdp3m0=1.000000\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mdp3m1=1.000000\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mdp3m2=1.000000\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mGiven the available memory, 4095 threads could be allocated and 32 threads will be used in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel\u001b[0;36m:\u001b[0;32m347\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mGiven the available memory, 4095 threads could be allocated and 32 threads will be used in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m73\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Getting density contrast (using 32 cores and 32 arrays, parallel routine 1)...\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mPerforming CiC binning...\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 0...\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148968000b60 for threadedDensity[10] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148918000b60 for threadedDensity[15] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 10...\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 15...\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148950000b60 for threadedDensity[9] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148928000b60 for threadedDensity[20] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 9...\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 20...\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1488d8000b60 for threadedDensity[29] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1488e0000b60 for threadedDensity[6] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 29...\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 6...\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148900000b60 for threadedDensity[16] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148960000b60 for threadedDensity[13] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 16...\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 13...\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1489b8000b60 for threadedDensity[4] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148958000b60 for threadedDensity[22] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 4...\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 22...\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148930000b60 for threadedDensity[14] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148938000b60 for threadedDensity[18] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 14...\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 18...\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1488f0000b60 for threadedDensity[24] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148980000b60 for threadedDensity[11] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 24...\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 11...\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148990000b60 for threadedDensity[21] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1488dc000b60 for threadedDensity[17] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148978000b60 for threadedDensity[26] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 17...\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 26...\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148998000b60 for threadedDensity[25] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148920000b60 for threadedDensity[12] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 25...\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 12...\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148910000b60 for threadedDensity[23] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148908000b60 for threadedDensity[8] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 23...\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 8...\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148988000b60 for threadedDensity[28] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1489b0000b60 for threadedDensity[1] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 28...\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 1...\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 21...\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1489a8000b60 for threadedDensity[30] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148970000b60 for threadedDensity[7] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 30...\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 7...\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1488d0000b60 for threadedDensity[5] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1488f8000b60 for threadedDensity[19] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 5...\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 19...\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148948000b60 for threadedDensity[31] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 31...\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1489a0000b60 for threadedDensity[3] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 3...\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1488e8000b60 for threadedDensity[2] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 2...\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148940000b60 for threadedDensity[27] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 27...\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 2 done.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 7 done.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 30 done.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 29 done.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 6 done.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 31 done.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 22 done.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 4 done.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 16 done.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 25 done.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 12 done.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 18 done.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 14 done.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 8 done.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 23 done.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 10 done.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 15 done.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 24 done.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 11 done.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 20 done.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 9 done.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 21 done.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 3 done.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 17 done.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 26 done.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 28 done.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 1 done.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 27 done.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 19 done.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 13 done.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 0 done.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 5 done.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mPerforming CiC done.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mPerforming CiC reduction...\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x1489b0000b60 for threadedDensity[1] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x1488e8000b60 for threadedDensity[2] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x1489a0000b60 for threadedDensity[3] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x1489b8000b60 for threadedDensity[4] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x1488d0000b60 for threadedDensity[5] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x1488e0000b60 for threadedDensity[6] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148970000b60 for threadedDensity[7] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148908000b60 for threadedDensity[8] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148950000b60 for threadedDensity[9] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148968000b60 for threadedDensity[10] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148980000b60 for threadedDensity[11] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148920000b60 for threadedDensity[12] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148960000b60 for threadedDensity[13] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148930000b60 for threadedDensity[14] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148918000b60 for threadedDensity[15] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148900000b60 for threadedDensity[16] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x1488dc000b60 for threadedDensity[17] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148938000b60 for threadedDensity[18] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x1488f8000b60 for threadedDensity[19] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148928000b60 for threadedDensity[20] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148990000b60 for threadedDensity[21] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148958000b60 for threadedDensity[22] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148910000b60 for threadedDensity[23] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x1488f0000b60 for threadedDensity[24] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148998000b60 for threadedDensity[25] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148978000b60 for threadedDensity[26] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148940000b60 for threadedDensity[27] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148988000b60 for threadedDensity[28] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x1488d8000b60 for threadedDensity[29] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x1489a8000b60 for threadedDensity[30] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148948000b60 for threadedDensity[31] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mPerforming CiC reduction done.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Getting density contrast (using 32 cores and 32 arrays, parallel routine 1) done.\n",
"[02:24:25\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Getting gravitational potential, periodic boundary conditions (using 32 cores)...\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (1081344 bytes) at 0x55cb08d7b1a0 for AUX in \u001b[38;5;227mpoisson_solvers.c\u001b[0;36m:\u001b[38;5;192msolve_poisson_DFT\u001b[0;36m:\u001b[0;32m106\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08d7b1a0 for AUX in \u001b[38;5;227mpoisson_solvers.c\u001b[0;36m:\u001b[38;5;192msolve_poisson_DFT\u001b[0;36m:\u001b[0;32m116\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Getting gravitational potential, periodic boundary conditions (using 32 cores) done.\n",
"[02:24:25\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Acceleration loop, direction 0...\n",
"[02:24:25\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Acceleration loop, direction 0 done.\n",
"[02:24:25\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Acceleration loop, direction 1...\n",
"[02:24:25\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Acceleration loop, direction 1 done.\n",
"[02:24:25\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Acceleration loop, direction 2...\n",
"[02:24:25\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Acceleration loop, direction 2 done.\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08c7b190 for g_pad in \u001b[38;5;227mdiagnostic.c\u001b[0;36m:\u001b[38;5;192mcompute_force_on_particle\u001b[0;36m:\u001b[0;32m70\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08c1b190 for xwopb in \u001b[38;5;227mdiagnostic.c\u001b[0;36m:\u001b[38;5;192mrun_force_diagnostic\u001b[0;36m:\u001b[0;32m227\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]====|Computing force for particle pair 1, bin 15: [2.393, 4.019] done. Total: 10 / max 60 pairs. Trials 136 / max 100000000.\n",
"[02:24:25\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]====|Computing force for particle pair 2, bin 15: [2.393, 4.019]. Total: 11 / max 60 pairs...\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated memory (393204 bytes) at 0x55cb08c1b190 for xwopb in \u001b[38;5;227mdiagnostic.c\u001b[0;36m:\u001b[38;5;192mrun_force_diagnostic\u001b[0;36m:\u001b[0;32m207\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated memory (1048576 bytes) at 0x55cb08c7b190 for g_pad in \u001b[38;5;227mdiagnostic.c\u001b[0;36m:\u001b[38;5;192mcompute_force_on_particle\u001b[0;36m:\u001b[0;32m32\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mdp3m0=1.000000\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mdp3m1=1.000000\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mdp3m2=1.000000\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mGiven the available memory, 4095 threads could be allocated and 32 threads will be used in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel\u001b[0;36m:\u001b[0;32m347\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mGiven the available memory, 4095 threads could be allocated and 32 threads will be used in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m73\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Getting density contrast (using 32 cores and 32 arrays, parallel routine 1)...\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mPerforming CiC binning...\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 0...\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1488d0000b60 for threadedDensity[5] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 5...\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148988000b60 for threadedDensity[28] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1488d8000b60 for threadedDensity[29] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1488e0000b60 for threadedDensity[6] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 29...\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 6...\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148900000b60 for threadedDensity[16] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148960000b60 for threadedDensity[13] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 16...\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 13...\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148958000b60 for threadedDensity[22] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148998000b60 for threadedDensity[25] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148920000b60 for threadedDensity[12] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 25...\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 12...\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 22...\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148930000b60 for threadedDensity[14] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148938000b60 for threadedDensity[18] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 18...\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 14...\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148968000b60 for threadedDensity[10] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148918000b60 for threadedDensity[15] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 10...\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 15...\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1489b8000b60 for threadedDensity[4] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1488e8000b60 for threadedDensity[2] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 4...\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 2...\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148908000b60 for threadedDensity[8] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1488f0000b60 for threadedDensity[24] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148980000b60 for threadedDensity[11] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 24...\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 11...\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 8...\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1488dc000b60 for threadedDensity[17] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148978000b60 for threadedDensity[26] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 26...\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 17...\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148910000b60 for threadedDensity[23] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148950000b60 for threadedDensity[9] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148928000b60 for threadedDensity[20] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 9...\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 20...\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 23...\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 28...\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1489b0000b60 for threadedDensity[1] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148990000b60 for threadedDensity[21] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148940000b60 for threadedDensity[27] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1488f8000b60 for threadedDensity[19] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 27...\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 19...\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148948000b60 for threadedDensity[31] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 1...\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 31...\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 21...\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1489a0000b60 for threadedDensity[3] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1489a8000b60 for threadedDensity[30] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148970000b60 for threadedDensity[7] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 30...\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 7...\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 3...\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 8 done.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 23 done.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 29 done.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 6 done.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 13 done.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 16 done.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 31 done.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 22 done.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 4 done.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 2 done.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 12 done.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 25 done.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 18 done.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 14 done.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 15 done.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 10 done.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 9 done.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 20 done.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 24 done.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 11 done.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 21 done.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 3 done.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 28 done.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 1 done.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 26 done.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 17 done.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 30 done.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 7 done.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 5 done.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 0 done.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 19 done.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 27 done.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mPerforming CiC done.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mPerforming CiC reduction...\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x1489b0000b60 for threadedDensity[1] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x1488e8000b60 for threadedDensity[2] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x1489a0000b60 for threadedDensity[3] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x1489b8000b60 for threadedDensity[4] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x1488d0000b60 for threadedDensity[5] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x1488e0000b60 for threadedDensity[6] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148970000b60 for threadedDensity[7] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148908000b60 for threadedDensity[8] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148950000b60 for threadedDensity[9] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148968000b60 for threadedDensity[10] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148980000b60 for threadedDensity[11] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148920000b60 for threadedDensity[12] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148960000b60 for threadedDensity[13] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148930000b60 for threadedDensity[14] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148918000b60 for threadedDensity[15] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148900000b60 for threadedDensity[16] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x1488dc000b60 for threadedDensity[17] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148938000b60 for threadedDensity[18] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x1488f8000b60 for threadedDensity[19] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148928000b60 for threadedDensity[20] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148990000b60 for threadedDensity[21] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148958000b60 for threadedDensity[22] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148910000b60 for threadedDensity[23] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x1488f0000b60 for threadedDensity[24] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148998000b60 for threadedDensity[25] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148978000b60 for threadedDensity[26] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148940000b60 for threadedDensity[27] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148988000b60 for threadedDensity[28] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x1488d8000b60 for threadedDensity[29] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x1489a8000b60 for threadedDensity[30] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148948000b60 for threadedDensity[31] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mPerforming CiC reduction done.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Getting density contrast (using 32 cores and 32 arrays, parallel routine 1) done.\n",
"[02:24:25\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Getting gravitational potential, periodic boundary conditions (using 32 cores)...\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (1081344 bytes) at 0x55cb08d7b1a0 for AUX in \u001b[38;5;227mpoisson_solvers.c\u001b[0;36m:\u001b[38;5;192msolve_poisson_DFT\u001b[0;36m:\u001b[0;32m106\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08d7b1a0 for AUX in \u001b[38;5;227mpoisson_solvers.c\u001b[0;36m:\u001b[38;5;192msolve_poisson_DFT\u001b[0;36m:\u001b[0;32m116\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Getting gravitational potential, periodic boundary conditions (using 32 cores) done.\n",
"[02:24:25\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Acceleration loop, direction 0...\n",
"[02:24:25\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Acceleration loop, direction 0 done.\n",
"[02:24:25\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Acceleration loop, direction 1...\n",
"[02:24:25\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Acceleration loop, direction 1 done.\n",
"[02:24:25\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Acceleration loop, direction 2...\n",
"[02:24:25\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Acceleration loop, direction 2 done.\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08c7b190 for g_pad in \u001b[38;5;227mdiagnostic.c\u001b[0;36m:\u001b[38;5;192mcompute_force_on_particle\u001b[0;36m:\u001b[0;32m70\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08c1b190 for xwopb in \u001b[38;5;227mdiagnostic.c\u001b[0;36m:\u001b[38;5;192mrun_force_diagnostic\u001b[0;36m:\u001b[0;32m227\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]====|Computing force for particle pair 2, bin 15: [2.393, 4.019] done. Total: 11 / max 60 pairs. Trials 549 / max 100000000.\n",
"[02:24:25\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]====|Computing force for particle pair 1, bin 16: [4.019, 6.751]. Total: 12 / max 60 pairs...\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated memory (393204 bytes) at 0x55cb08c1b190 for xwopb in \u001b[38;5;227mdiagnostic.c\u001b[0;36m:\u001b[38;5;192mrun_force_diagnostic\u001b[0;36m:\u001b[0;32m207\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated memory (1048576 bytes) at 0x55cb08c7b190 for g_pad in \u001b[38;5;227mdiagnostic.c\u001b[0;36m:\u001b[38;5;192mcompute_force_on_particle\u001b[0;36m:\u001b[0;32m32\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mdp3m0=1.000000\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mdp3m1=1.000000\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mdp3m2=1.000000\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mGiven the available memory, 4095 threads could be allocated and 32 threads will be used in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel\u001b[0;36m:\u001b[0;32m347\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mGiven the available memory, 4095 threads could be allocated and 32 threads will be used in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m73\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Getting density contrast (using 32 cores and 32 arrays, parallel routine 1)...\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mPerforming CiC binning...\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 0...\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1488d0000b60 for threadedDensity[5] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 5...\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1488e0000b60 for threadedDensity[6] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1488d8000b60 for threadedDensity[29] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 6...\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 29...\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148920000b60 for threadedDensity[12] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148998000b60 for threadedDensity[25] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 12...\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 25...\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148960000b60 for threadedDensity[13] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148900000b60 for threadedDensity[16] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 13...\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 16...\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148938000b60 for threadedDensity[18] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148930000b60 for threadedDensity[14] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 18...\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 14...\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148968000b60 for threadedDensity[10] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148918000b60 for threadedDensity[15] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 10...\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 15...\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148958000b60 for threadedDensity[22] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 22...\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1488f0000b60 for threadedDensity[24] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148980000b60 for threadedDensity[11] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 11...\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 24...\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148950000b60 for threadedDensity[9] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148928000b60 for threadedDensity[20] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 9...\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 20...\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1488e8000b60 for threadedDensity[2] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1489b8000b60 for threadedDensity[4] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 2...\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 4...\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148908000b60 for threadedDensity[8] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148988000b60 for threadedDensity[28] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1489b0000b60 for threadedDensity[1] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 28...\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 1...\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 8...\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148990000b60 for threadedDensity[21] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148910000b60 for threadedDensity[23] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 21...\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 23...\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1489a8000b60 for threadedDensity[30] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148970000b60 for threadedDensity[7] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 30...\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 7...\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148978000b60 for threadedDensity[26] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1488dc000b60 for threadedDensity[17] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 26...\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 17...\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1488f8000b60 for threadedDensity[19] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148940000b60 for threadedDensity[27] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 19...\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 27...\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1489a0000b60 for threadedDensity[3] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 3...\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148948000b60 for threadedDensity[31] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 31...\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 8 done.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 23 done.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 6 done.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 29 done.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 4 done.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 2 done.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 31 done.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 22 done.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 13 done.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 16 done.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 14 done.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 18 done.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 25 done.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 12 done.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 10 done.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 15 done.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 9 done.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 20 done.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 17 done.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 26 done.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 11 done.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 24 done.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 21 done.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 3 done.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 0 done.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 5 done.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 1 done.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 28 done.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 30 done.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 7 done.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 27 done.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 19 done.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mPerforming CiC done.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mPerforming CiC reduction...\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x1489b0000b60 for threadedDensity[1] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x1488e8000b60 for threadedDensity[2] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x1489a0000b60 for threadedDensity[3] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x1489b8000b60 for threadedDensity[4] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x1488d0000b60 for threadedDensity[5] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x1488e0000b60 for threadedDensity[6] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148970000b60 for threadedDensity[7] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148908000b60 for threadedDensity[8] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148950000b60 for threadedDensity[9] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148968000b60 for threadedDensity[10] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148980000b60 for threadedDensity[11] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148920000b60 for threadedDensity[12] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148960000b60 for threadedDensity[13] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148930000b60 for threadedDensity[14] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148918000b60 for threadedDensity[15] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148900000b60 for threadedDensity[16] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x1488dc000b60 for threadedDensity[17] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148938000b60 for threadedDensity[18] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x1488f8000b60 for threadedDensity[19] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148928000b60 for threadedDensity[20] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148990000b60 for threadedDensity[21] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148958000b60 for threadedDensity[22] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148910000b60 for threadedDensity[23] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x1488f0000b60 for threadedDensity[24] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148998000b60 for threadedDensity[25] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148978000b60 for threadedDensity[26] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148940000b60 for threadedDensity[27] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148988000b60 for threadedDensity[28] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x1488d8000b60 for threadedDensity[29] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x1489a8000b60 for threadedDensity[30] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148948000b60 for threadedDensity[31] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mPerforming CiC reduction done.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Getting density contrast (using 32 cores and 32 arrays, parallel routine 1) done.\n",
"[02:24:25\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Getting gravitational potential, periodic boundary conditions (using 32 cores)...\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (1081344 bytes) at 0x55cb08d7b1a0 for AUX in \u001b[38;5;227mpoisson_solvers.c\u001b[0;36m:\u001b[38;5;192msolve_poisson_DFT\u001b[0;36m:\u001b[0;32m106\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08d7b1a0 for AUX in \u001b[38;5;227mpoisson_solvers.c\u001b[0;36m:\u001b[38;5;192msolve_poisson_DFT\u001b[0;36m:\u001b[0;32m116\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Getting gravitational potential, periodic boundary conditions (using 32 cores) done.\n",
"[02:24:25\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Acceleration loop, direction 0...\n",
"[02:24:25\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Acceleration loop, direction 0 done.\n",
"[02:24:25\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Acceleration loop, direction 1...\n",
"[02:24:25\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Acceleration loop, direction 1 done.\n",
"[02:24:25\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Acceleration loop, direction 2...\n",
"[02:24:25\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Acceleration loop, direction 2 done.\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08c7b190 for g_pad in \u001b[38;5;227mdiagnostic.c\u001b[0;36m:\u001b[38;5;192mcompute_force_on_particle\u001b[0;36m:\u001b[0;32m70\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08c1b190 for xwopb in \u001b[38;5;227mdiagnostic.c\u001b[0;36m:\u001b[38;5;192mrun_force_diagnostic\u001b[0;36m:\u001b[0;32m227\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]====|Computing force for particle pair 1, bin 16: [4.019, 6.751] done. Total: 12 / max 60 pairs. Trials 616 / max 100000000.\n",
"[02:24:25\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]====|Computing force for particle pair 2, bin 16: [4.019, 6.751]. Total: 13 / max 60 pairs...\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated memory (393204 bytes) at 0x55cb08c1b190 for xwopb in \u001b[38;5;227mdiagnostic.c\u001b[0;36m:\u001b[38;5;192mrun_force_diagnostic\u001b[0;36m:\u001b[0;32m207\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated memory (1048576 bytes) at 0x55cb08c7b190 for g_pad in \u001b[38;5;227mdiagnostic.c\u001b[0;36m:\u001b[38;5;192mcompute_force_on_particle\u001b[0;36m:\u001b[0;32m32\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mdp3m0=1.000000\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mdp3m1=1.000000\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mdp3m2=1.000000\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mGiven the available memory, 4095 threads could be allocated and 32 threads will be used in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel\u001b[0;36m:\u001b[0;32m347\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mGiven the available memory, 4095 threads could be allocated and 32 threads will be used in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m73\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Getting density contrast (using 32 cores and 32 arrays, parallel routine 1)...\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mPerforming CiC binning...\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 0...\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1488d0000b60 for threadedDensity[5] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 5...\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148980000b60 for threadedDensity[11] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 11...\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148950000b60 for threadedDensity[9] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1488d8000b60 for threadedDensity[29] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1488e0000b60 for threadedDensity[6] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 29...\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 6...\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148900000b60 for threadedDensity[16] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148960000b60 for threadedDensity[13] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 16...\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 13...\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148938000b60 for threadedDensity[18] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148930000b60 for threadedDensity[14] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 18...\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 14...\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148958000b60 for threadedDensity[22] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148998000b60 for threadedDensity[25] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148920000b60 for threadedDensity[12] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 25...\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 12...\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 22...\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148918000b60 for threadedDensity[15] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148968000b60 for threadedDensity[10] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 15...\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 10...\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1488e8000b60 for threadedDensity[2] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1489b8000b60 for threadedDensity[4] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 2...\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 4...\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148908000b60 for threadedDensity[8] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148910000b60 for threadedDensity[23] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 8...\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 23...\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 9...\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148928000b60 for threadedDensity[20] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1488f0000b60 for threadedDensity[24] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 20...\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148988000b60 for threadedDensity[28] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1489b0000b60 for threadedDensity[1] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 28...\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 1...\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 24...\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1489a8000b60 for threadedDensity[30] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148970000b60 for threadedDensity[7] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 30...\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 7...\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148978000b60 for threadedDensity[26] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1488dc000b60 for threadedDensity[17] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 26...\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 17...\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148990000b60 for threadedDensity[21] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148940000b60 for threadedDensity[27] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1488f8000b60 for threadedDensity[19] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 27...\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 19...\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 21...\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1489a0000b60 for threadedDensity[3] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 3...\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148948000b60 for threadedDensity[31] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 31...\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 22 done.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 31 done.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 29 done.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 6 done.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 2 done.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 4 done.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 13 done.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 16 done.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 14 done.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 18 done.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 25 done.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 12 done.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 15 done.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 10 done.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 8 done.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 23 done.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 24 done.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 11 done.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 9 done.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 20 done.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 26 done.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 17 done.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 28 done.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 1 done.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 21 done.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 3 done.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 0 done.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 5 done.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 7 done.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 30 done.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 27 done.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 19 done.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mPerforming CiC done.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mPerforming CiC reduction...\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x1489b0000b60 for threadedDensity[1] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x1488e8000b60 for threadedDensity[2] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x1489a0000b60 for threadedDensity[3] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x1489b8000b60 for threadedDensity[4] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x1488d0000b60 for threadedDensity[5] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x1488e0000b60 for threadedDensity[6] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148970000b60 for threadedDensity[7] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148908000b60 for threadedDensity[8] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148950000b60 for threadedDensity[9] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148968000b60 for threadedDensity[10] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148980000b60 for threadedDensity[11] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148920000b60 for threadedDensity[12] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148960000b60 for threadedDensity[13] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148930000b60 for threadedDensity[14] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148918000b60 for threadedDensity[15] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148900000b60 for threadedDensity[16] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x1488dc000b60 for threadedDensity[17] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148938000b60 for threadedDensity[18] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x1488f8000b60 for threadedDensity[19] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148928000b60 for threadedDensity[20] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148990000b60 for threadedDensity[21] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148958000b60 for threadedDensity[22] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148910000b60 for threadedDensity[23] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x1488f0000b60 for threadedDensity[24] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148998000b60 for threadedDensity[25] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148978000b60 for threadedDensity[26] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148940000b60 for threadedDensity[27] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148988000b60 for threadedDensity[28] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x1488d8000b60 for threadedDensity[29] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x1489a8000b60 for threadedDensity[30] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148948000b60 for threadedDensity[31] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mPerforming CiC reduction done.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Getting density contrast (using 32 cores and 32 arrays, parallel routine 1) done.\n",
"[02:24:25\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Getting gravitational potential, periodic boundary conditions (using 32 cores)...\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (1081344 bytes) at 0x55cb08d7b1a0 for AUX in \u001b[38;5;227mpoisson_solvers.c\u001b[0;36m:\u001b[38;5;192msolve_poisson_DFT\u001b[0;36m:\u001b[0;32m106\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08d7b1a0 for AUX in \u001b[38;5;227mpoisson_solvers.c\u001b[0;36m:\u001b[38;5;192msolve_poisson_DFT\u001b[0;36m:\u001b[0;32m116\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Getting gravitational potential, periodic boundary conditions (using 32 cores) done.\n",
"[02:24:25\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Acceleration loop, direction 0...\n",
"[02:24:25\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Acceleration loop, direction 0 done.\n",
"[02:24:25\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Acceleration loop, direction 1...\n",
"[02:24:25\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Acceleration loop, direction 1 done.\n",
"[02:24:25\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Acceleration loop, direction 2...\n",
"[02:24:25\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Acceleration loop, direction 2 done.\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08c7b190 for g_pad in \u001b[38;5;227mdiagnostic.c\u001b[0;36m:\u001b[38;5;192mcompute_force_on_particle\u001b[0;36m:\u001b[0;32m70\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08c1b190 for xwopb in \u001b[38;5;227mdiagnostic.c\u001b[0;36m:\u001b[38;5;192mrun_force_diagnostic\u001b[0;36m:\u001b[0;32m227\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]====|Computing force for particle pair 2, bin 16: [4.019, 6.751] done. Total: 13 / max 60 pairs. Trials 786 / max 100000000.\n",
"[02:24:25\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]====|Computing force for particle pair 3, bin 16: [4.019, 6.751]. Total: 14 / max 60 pairs...\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated memory (393204 bytes) at 0x55cb08c1b190 for xwopb in \u001b[38;5;227mdiagnostic.c\u001b[0;36m:\u001b[38;5;192mrun_force_diagnostic\u001b[0;36m:\u001b[0;32m207\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated memory (1048576 bytes) at 0x55cb08c7b190 for g_pad in \u001b[38;5;227mdiagnostic.c\u001b[0;36m:\u001b[38;5;192mcompute_force_on_particle\u001b[0;36m:\u001b[0;32m32\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mdp3m0=1.000000\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mdp3m1=1.000000\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mdp3m2=1.000000\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mGiven the available memory, 4095 threads could be allocated and 32 threads will be used in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel\u001b[0;36m:\u001b[0;32m347\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mGiven the available memory, 4095 threads could be allocated and 32 threads will be used in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m73\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Getting density contrast (using 32 cores and 32 arrays, parallel routine 1)...\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mPerforming CiC binning...\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 0...\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1488d0000b60 for threadedDensity[5] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 5...\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148960000b60 for threadedDensity[13] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148900000b60 for threadedDensity[16] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 13...\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 16...\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1488e0000b60 for threadedDensity[6] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1488d8000b60 for threadedDensity[29] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 6...\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 29...\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148998000b60 for threadedDensity[25] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148920000b60 for threadedDensity[12] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 12...\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 25...\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148938000b60 for threadedDensity[18] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148930000b60 for threadedDensity[14] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 18...\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 14...\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148968000b60 for threadedDensity[10] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148918000b60 for threadedDensity[15] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 10...\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 15...\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148908000b60 for threadedDensity[8] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148910000b60 for threadedDensity[23] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 8...\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 23...\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1489b8000b60 for threadedDensity[4] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1488e8000b60 for threadedDensity[2] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 4...\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 2...\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1488f0000b60 for threadedDensity[24] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148980000b60 for threadedDensity[11] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 11...\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 24...\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148950000b60 for threadedDensity[9] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148928000b60 for threadedDensity[20] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 20...\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 9...\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148958000b60 for threadedDensity[22] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 22...\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148990000b60 for threadedDensity[21] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 21...\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1489b0000b60 for threadedDensity[1] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 1...\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148988000b60 for threadedDensity[28] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1488dc000b60 for threadedDensity[17] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148978000b60 for threadedDensity[26] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 17...\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 26...\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 28...\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1489a8000b60 for threadedDensity[30] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148970000b60 for threadedDensity[7] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 30...\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 7...\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148940000b60 for threadedDensity[27] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1488f8000b60 for threadedDensity[19] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 27...\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 19...\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1489a0000b60 for threadedDensity[3] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 3...\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148948000b60 for threadedDensity[31] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 31...\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 22 done.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 31 done.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 6 done.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 29 done.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 4 done.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 2 done.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 13 done.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 16 done.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 25 done.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 12 done.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 18 done.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 14 done.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 23 done.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 8 done.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 10 done.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 15 done.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 11 done.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 24 done.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 20 done.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 9 done.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 1 done.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 28 done.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 21 done.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 3 done.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 17 done.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 26 done.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 30 done.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 7 done.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 0 done.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 5 done.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 19 done.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 27 done.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mPerforming CiC done.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mPerforming CiC reduction...\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x1489b0000b60 for threadedDensity[1] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x1488e8000b60 for threadedDensity[2] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x1489a0000b60 for threadedDensity[3] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x1489b8000b60 for threadedDensity[4] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x1488d0000b60 for threadedDensity[5] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x1488e0000b60 for threadedDensity[6] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148970000b60 for threadedDensity[7] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148908000b60 for threadedDensity[8] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148950000b60 for threadedDensity[9] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148968000b60 for threadedDensity[10] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148980000b60 for threadedDensity[11] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148920000b60 for threadedDensity[12] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148960000b60 for threadedDensity[13] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148930000b60 for threadedDensity[14] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148918000b60 for threadedDensity[15] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148900000b60 for threadedDensity[16] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x1488dc000b60 for threadedDensity[17] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148938000b60 for threadedDensity[18] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x1488f8000b60 for threadedDensity[19] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148928000b60 for threadedDensity[20] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148990000b60 for threadedDensity[21] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148958000b60 for threadedDensity[22] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148910000b60 for threadedDensity[23] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x1488f0000b60 for threadedDensity[24] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148998000b60 for threadedDensity[25] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148978000b60 for threadedDensity[26] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148940000b60 for threadedDensity[27] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148988000b60 for threadedDensity[28] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x1488d8000b60 for threadedDensity[29] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x1489a8000b60 for threadedDensity[30] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148948000b60 for threadedDensity[31] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mPerforming CiC reduction done.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Getting density contrast (using 32 cores and 32 arrays, parallel routine 1) done.\n",
"[02:24:25\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Getting gravitational potential, periodic boundary conditions (using 32 cores)...\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (1081344 bytes) at 0x55cb08d7b1a0 for AUX in \u001b[38;5;227mpoisson_solvers.c\u001b[0;36m:\u001b[38;5;192msolve_poisson_DFT\u001b[0;36m:\u001b[0;32m106\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08d7b1a0 for AUX in \u001b[38;5;227mpoisson_solvers.c\u001b[0;36m:\u001b[38;5;192msolve_poisson_DFT\u001b[0;36m:\u001b[0;32m116\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Getting gravitational potential, periodic boundary conditions (using 32 cores) done.\n",
"[02:24:25\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Acceleration loop, direction 0...\n",
"[02:24:25\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Acceleration loop, direction 0 done.\n",
"[02:24:25\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Acceleration loop, direction 1...\n",
"[02:24:25\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Acceleration loop, direction 1 done.\n",
"[02:24:25\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Acceleration loop, direction 2...\n",
"[02:24:25\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Acceleration loop, direction 2 done.\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08c7b190 for g_pad in \u001b[38;5;227mdiagnostic.c\u001b[0;36m:\u001b[38;5;192mcompute_force_on_particle\u001b[0;36m:\u001b[0;32m70\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08c1b190 for xwopb in \u001b[38;5;227mdiagnostic.c\u001b[0;36m:\u001b[38;5;192mrun_force_diagnostic\u001b[0;36m:\u001b[0;32m227\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]====|Computing force for particle pair 3, bin 16: [4.019, 6.751] done. Total: 14 / max 60 pairs. Trials 967 / max 100000000.\n",
"[02:24:25\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]====|Computing force for particle pair 1, bin 13: [0.848, 1.424]. Total: 15 / max 60 pairs...\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated memory (393204 bytes) at 0x55cb08c1b190 for xwopb in \u001b[38;5;227mdiagnostic.c\u001b[0;36m:\u001b[38;5;192mrun_force_diagnostic\u001b[0;36m:\u001b[0;32m207\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated memory (1048576 bytes) at 0x55cb08c7b190 for g_pad in \u001b[38;5;227mdiagnostic.c\u001b[0;36m:\u001b[38;5;192mcompute_force_on_particle\u001b[0;36m:\u001b[0;32m32\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mdp3m0=1.000000\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mdp3m1=1.000000\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mdp3m2=1.000000\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mGiven the available memory, 4095 threads could be allocated and 32 threads will be used in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel\u001b[0;36m:\u001b[0;32m347\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mGiven the available memory, 4095 threads could be allocated and 32 threads will be used in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m73\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Getting density contrast (using 32 cores and 32 arrays, parallel routine 1)...\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mPerforming CiC binning...\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 0...\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1488e0000b60 for threadedDensity[6] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1488d0000b60 for threadedDensity[5] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 5...\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 6...\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1488d8000b60 for threadedDensity[29] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148960000b60 for threadedDensity[13] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148900000b60 for threadedDensity[16] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 13...\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 16...\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 29...\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148998000b60 for threadedDensity[25] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148920000b60 for threadedDensity[12] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 25...\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 12...\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148938000b60 for threadedDensity[18] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148930000b60 for threadedDensity[14] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 18...\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 14...\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148918000b60 for threadedDensity[15] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148968000b60 for threadedDensity[10] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 15...\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 10...\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148928000b60 for threadedDensity[20] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148950000b60 for threadedDensity[9] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 20...\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 9...\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1489b8000b60 for threadedDensity[4] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1488e8000b60 for threadedDensity[2] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 4...\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 2...\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1488f0000b60 for threadedDensity[24] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148980000b60 for threadedDensity[11] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 24...\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 11...\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148908000b60 for threadedDensity[8] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148958000b60 for threadedDensity[22] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 8...\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148910000b60 for threadedDensity[23] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 22...\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 23...\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148988000b60 for threadedDensity[28] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1489b0000b60 for threadedDensity[1] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 1...\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 28...\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148978000b60 for threadedDensity[26] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1488dc000b60 for threadedDensity[17] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 26...\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 17...\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148990000b60 for threadedDensity[21] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148940000b60 for threadedDensity[27] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1488f8000b60 for threadedDensity[19] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 27...\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 19...\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 21...\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1489a8000b60 for threadedDensity[30] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148970000b60 for threadedDensity[7] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 30...\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 7...\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1489a0000b60 for threadedDensity[3] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 3...\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148948000b60 for threadedDensity[31] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 31...\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 22 done.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 31 done.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 29 done.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 6 done.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 13 done.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 16 done.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 4 done.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 2 done.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 25 done.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 12 done.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 18 done.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 14 done.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 23 done.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 8 done.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 10 done.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 15 done.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 11 done.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 24 done.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 9 done.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 20 done.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 3 done.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 21 done.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 26 done.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 17 done.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 28 done.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 1 done.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 5 done.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 0 done.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 30 done.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 7 done.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 27 done.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 19 done.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mPerforming CiC done.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mPerforming CiC reduction...\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x1489b0000b60 for threadedDensity[1] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x1488e8000b60 for threadedDensity[2] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x1489a0000b60 for threadedDensity[3] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x1489b8000b60 for threadedDensity[4] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x1488d0000b60 for threadedDensity[5] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x1488e0000b60 for threadedDensity[6] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148970000b60 for threadedDensity[7] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148908000b60 for threadedDensity[8] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148950000b60 for threadedDensity[9] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148968000b60 for threadedDensity[10] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148980000b60 for threadedDensity[11] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148920000b60 for threadedDensity[12] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148960000b60 for threadedDensity[13] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148930000b60 for threadedDensity[14] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148918000b60 for threadedDensity[15] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148900000b60 for threadedDensity[16] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x1488dc000b60 for threadedDensity[17] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148938000b60 for threadedDensity[18] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x1488f8000b60 for threadedDensity[19] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148928000b60 for threadedDensity[20] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148990000b60 for threadedDensity[21] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148958000b60 for threadedDensity[22] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148910000b60 for threadedDensity[23] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x1488f0000b60 for threadedDensity[24] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148998000b60 for threadedDensity[25] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148978000b60 for threadedDensity[26] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148940000b60 for threadedDensity[27] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148988000b60 for threadedDensity[28] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x1488d8000b60 for threadedDensity[29] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x1489a8000b60 for threadedDensity[30] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148948000b60 for threadedDensity[31] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mPerforming CiC reduction done.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Getting density contrast (using 32 cores and 32 arrays, parallel routine 1) done.\n",
"[02:24:25\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Getting gravitational potential, periodic boundary conditions (using 32 cores)...\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (1081344 bytes) at 0x55cb08d7b1a0 for AUX in \u001b[38;5;227mpoisson_solvers.c\u001b[0;36m:\u001b[38;5;192msolve_poisson_DFT\u001b[0;36m:\u001b[0;32m106\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08d7b1a0 for AUX in \u001b[38;5;227mpoisson_solvers.c\u001b[0;36m:\u001b[38;5;192msolve_poisson_DFT\u001b[0;36m:\u001b[0;32m116\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Getting gravitational potential, periodic boundary conditions (using 32 cores) done.\n",
"[02:24:25\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Acceleration loop, direction 0...\n",
"[02:24:25\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Acceleration loop, direction 0 done.\n",
"[02:24:25\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Acceleration loop, direction 1...\n",
"[02:24:25\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Acceleration loop, direction 1 done.\n",
"[02:24:25\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Acceleration loop, direction 2...\n",
"[02:24:25\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Acceleration loop, direction 2 done.\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08c7b190 for g_pad in \u001b[38;5;227mdiagnostic.c\u001b[0;36m:\u001b[38;5;192mcompute_force_on_particle\u001b[0;36m:\u001b[0;32m70\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08c1b190 for xwopb in \u001b[38;5;227mdiagnostic.c\u001b[0;36m:\u001b[38;5;192mrun_force_diagnostic\u001b[0;36m:\u001b[0;32m227\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]====|Computing force for particle pair 1, bin 13: [0.848, 1.424] done. Total: 15 / max 60 pairs. Trials 1385 / max 100000000.\n",
"[02:24:25\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]====|Computing force for particle pair 3, bin 15: [2.393, 4.019]. Total: 16 / max 60 pairs...\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated memory (393204 bytes) at 0x55cb08c1b190 for xwopb in \u001b[38;5;227mdiagnostic.c\u001b[0;36m:\u001b[38;5;192mrun_force_diagnostic\u001b[0;36m:\u001b[0;32m207\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated memory (1048576 bytes) at 0x55cb08c7b190 for g_pad in \u001b[38;5;227mdiagnostic.c\u001b[0;36m:\u001b[38;5;192mcompute_force_on_particle\u001b[0;36m:\u001b[0;32m32\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mdp3m0=1.000000\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mdp3m1=1.000000\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mdp3m2=1.000000\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mGiven the available memory, 4095 threads could be allocated and 32 threads will be used in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel\u001b[0;36m:\u001b[0;32m347\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mGiven the available memory, 4095 threads could be allocated and 32 threads will be used in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m73\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Getting density contrast (using 32 cores and 32 arrays, parallel routine 1)...\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mPerforming CiC binning...\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 0...\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1488d0000b60 for threadedDensity[5] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 5...\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148960000b60 for threadedDensity[13] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1488e0000b60 for threadedDensity[6] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 6...\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1488d8000b60 for threadedDensity[29] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 13...\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148900000b60 for threadedDensity[16] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 29...\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 16...\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148998000b60 for threadedDensity[25] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 25...\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148920000b60 for threadedDensity[12] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148930000b60 for threadedDensity[14] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 14...\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148938000b60 for threadedDensity[18] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 12...\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148968000b60 for threadedDensity[10] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148918000b60 for threadedDensity[15] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 10...\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 15...\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 18...\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1489b8000b60 for threadedDensity[4] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1488f0000b60 for threadedDensity[24] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148980000b60 for threadedDensity[11] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 24...\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 11...\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1488e8000b60 for threadedDensity[2] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 4...\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 2...\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148950000b60 for threadedDensity[9] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148928000b60 for threadedDensity[20] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 9...\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 20...\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148958000b60 for threadedDensity[22] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148908000b60 for threadedDensity[8] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 22...\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 8...\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148910000b60 for threadedDensity[23] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1488dc000b60 for threadedDensity[17] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148978000b60 for threadedDensity[26] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 17...\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 26...\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 23...\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148988000b60 for threadedDensity[28] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1489b0000b60 for threadedDensity[1] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 28...\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 1...\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1489a8000b60 for threadedDensity[30] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148970000b60 for threadedDensity[7] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 30...\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 7...\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148990000b60 for threadedDensity[21] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148940000b60 for threadedDensity[27] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1488f8000b60 for threadedDensity[19] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 27...\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 19...\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 21...\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1489a0000b60 for threadedDensity[3] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 3...\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148948000b60 for threadedDensity[31] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 31...\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 22 done.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 31 done.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 29 done.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 6 done.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 2 done.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 4 done.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 16 done.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 13 done.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 12 done.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 25 done.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 18 done.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 14 done.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 8 done.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 23 done.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 10 done.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 15 done.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 9 done.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 20 done.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 24 done.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 11 done.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 0 done.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 5 done.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 28 done.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 1 done.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 26 done.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 17 done.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 3 done.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 21 done.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 19 done.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 27 done.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 30 done.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 7 done.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mPerforming CiC done.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mPerforming CiC reduction...\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x1489b0000b60 for threadedDensity[1] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x1488e8000b60 for threadedDensity[2] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x1489a0000b60 for threadedDensity[3] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x1489b8000b60 for threadedDensity[4] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x1488d0000b60 for threadedDensity[5] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x1488e0000b60 for threadedDensity[6] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148970000b60 for threadedDensity[7] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148908000b60 for threadedDensity[8] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148950000b60 for threadedDensity[9] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148968000b60 for threadedDensity[10] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148980000b60 for threadedDensity[11] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148920000b60 for threadedDensity[12] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148960000b60 for threadedDensity[13] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148930000b60 for threadedDensity[14] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148918000b60 for threadedDensity[15] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148900000b60 for threadedDensity[16] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x1488dc000b60 for threadedDensity[17] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148938000b60 for threadedDensity[18] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x1488f8000b60 for threadedDensity[19] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148928000b60 for threadedDensity[20] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148990000b60 for threadedDensity[21] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148958000b60 for threadedDensity[22] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148910000b60 for threadedDensity[23] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x1488f0000b60 for threadedDensity[24] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148998000b60 for threadedDensity[25] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148978000b60 for threadedDensity[26] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148940000b60 for threadedDensity[27] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148988000b60 for threadedDensity[28] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x1488d8000b60 for threadedDensity[29] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x1489a8000b60 for threadedDensity[30] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148948000b60 for threadedDensity[31] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mPerforming CiC reduction done.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Getting density contrast (using 32 cores and 32 arrays, parallel routine 1) done.\n",
"[02:24:25\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Getting gravitational potential, periodic boundary conditions (using 32 cores)...\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (1081344 bytes) at 0x55cb08d7b1a0 for AUX in \u001b[38;5;227mpoisson_solvers.c\u001b[0;36m:\u001b[38;5;192msolve_poisson_DFT\u001b[0;36m:\u001b[0;32m106\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08d7b1a0 for AUX in \u001b[38;5;227mpoisson_solvers.c\u001b[0;36m:\u001b[38;5;192msolve_poisson_DFT\u001b[0;36m:\u001b[0;32m116\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Getting gravitational potential, periodic boundary conditions (using 32 cores) done.\n",
"[02:24:25\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Acceleration loop, direction 0...\n",
"[02:24:25\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Acceleration loop, direction 0 done.\n",
"[02:24:25\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Acceleration loop, direction 1...\n",
"[02:24:25\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Acceleration loop, direction 1 done.\n",
"[02:24:25\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Acceleration loop, direction 2...\n",
"[02:24:25\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Acceleration loop, direction 2 done.\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08c7b190 for g_pad in \u001b[38;5;227mdiagnostic.c\u001b[0;36m:\u001b[38;5;192mcompute_force_on_particle\u001b[0;36m:\u001b[0;32m70\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08c1b190 for xwopb in \u001b[38;5;227mdiagnostic.c\u001b[0;36m:\u001b[38;5;192mrun_force_diagnostic\u001b[0;36m:\u001b[0;32m227\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]====|Computing force for particle pair 3, bin 15: [2.393, 4.019] done. Total: 16 / max 60 pairs. Trials 1451 / max 100000000.\n",
"[02:24:25\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]====|Computing force for particle pair 1, bin 14: [1.424, 2.393]. Total: 17 / max 60 pairs...\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated memory (393204 bytes) at 0x55cb08c1b190 for xwopb in \u001b[38;5;227mdiagnostic.c\u001b[0;36m:\u001b[38;5;192mrun_force_diagnostic\u001b[0;36m:\u001b[0;32m207\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated memory (1048576 bytes) at 0x55cb08c7b190 for g_pad in \u001b[38;5;227mdiagnostic.c\u001b[0;36m:\u001b[38;5;192mcompute_force_on_particle\u001b[0;36m:\u001b[0;32m32\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mdp3m0=1.000000\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mdp3m1=1.000000\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mdp3m2=1.000000\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mGiven the available memory, 4095 threads could be allocated and 32 threads will be used in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel\u001b[0;36m:\u001b[0;32m347\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mGiven the available memory, 4095 threads could be allocated and 32 threads will be used in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m73\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Getting density contrast (using 32 cores and 32 arrays, parallel routine 1)...\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mPerforming CiC binning...\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 0...\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1488d0000b60 for threadedDensity[5] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 5...\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1488d8000b60 for threadedDensity[29] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 29...\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148900000b60 for threadedDensity[16] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148960000b60 for threadedDensity[13] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 13...\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 16...\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1488e0000b60 for threadedDensity[6] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148930000b60 for threadedDensity[14] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148938000b60 for threadedDensity[18] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 14...\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 18...\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 6...\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148998000b60 for threadedDensity[25] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148920000b60 for threadedDensity[12] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 25...\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 12...\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148968000b60 for threadedDensity[10] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148918000b60 for threadedDensity[15] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 10...\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 15...\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148988000b60 for threadedDensity[28] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1489b0000b60 for threadedDensity[1] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 28...\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 1...\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1489b8000b60 for threadedDensity[4] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1488e8000b60 for threadedDensity[2] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 4...\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 2...\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1488f0000b60 for threadedDensity[24] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148980000b60 for threadedDensity[11] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 24...\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 11...\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148908000b60 for threadedDensity[8] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 8...\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148958000b60 for threadedDensity[22] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148950000b60 for threadedDensity[9] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148928000b60 for threadedDensity[20] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 9...\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 20...\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 22...\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148910000b60 for threadedDensity[23] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148990000b60 for threadedDensity[21] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 21...\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 23...\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1488f8000b60 for threadedDensity[19] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148940000b60 for threadedDensity[27] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 19...\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 27...\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1488dc000b60 for threadedDensity[17] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148978000b60 for threadedDensity[26] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 17...\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 26...\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1489a8000b60 for threadedDensity[30] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148970000b60 for threadedDensity[7] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 30...\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 7...\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1489a0000b60 for threadedDensity[3] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 3...\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148948000b60 for threadedDensity[31] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 31...\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 22 done.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 31 done.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 29 done.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 6 done.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 2 done.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 4 done.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 13 done.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 16 done.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 25 done.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 12 done.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 18 done.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 14 done.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 8 done.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 23 done.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 15 done.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 10 done.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 20 done.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 9 done.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 24 done.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 11 done.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 26 done.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 17 done.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 5 done.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 0 done.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 1 done.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 28 done.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 21 done.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 3 done.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 19 done.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 27 done.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 7 done.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 30 done.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mPerforming CiC done.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mPerforming CiC reduction...\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x1489b0000b60 for threadedDensity[1] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x1488e8000b60 for threadedDensity[2] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x1489a0000b60 for threadedDensity[3] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x1489b8000b60 for threadedDensity[4] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x1488d0000b60 for threadedDensity[5] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x1488e0000b60 for threadedDensity[6] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148970000b60 for threadedDensity[7] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148908000b60 for threadedDensity[8] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148950000b60 for threadedDensity[9] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148968000b60 for threadedDensity[10] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148980000b60 for threadedDensity[11] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148920000b60 for threadedDensity[12] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148960000b60 for threadedDensity[13] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148930000b60 for threadedDensity[14] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148918000b60 for threadedDensity[15] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148900000b60 for threadedDensity[16] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x1488dc000b60 for threadedDensity[17] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148938000b60 for threadedDensity[18] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x1488f8000b60 for threadedDensity[19] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148928000b60 for threadedDensity[20] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148990000b60 for threadedDensity[21] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148958000b60 for threadedDensity[22] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148910000b60 for threadedDensity[23] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x1488f0000b60 for threadedDensity[24] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148998000b60 for threadedDensity[25] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148978000b60 for threadedDensity[26] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148940000b60 for threadedDensity[27] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148988000b60 for threadedDensity[28] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x1488d8000b60 for threadedDensity[29] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x1489a8000b60 for threadedDensity[30] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148948000b60 for threadedDensity[31] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mPerforming CiC reduction done.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Getting density contrast (using 32 cores and 32 arrays, parallel routine 1) done.\n",
"[02:24:25\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Getting gravitational potential, periodic boundary conditions (using 32 cores)...\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (1081344 bytes) at 0x55cb08d7b1a0 for AUX in \u001b[38;5;227mpoisson_solvers.c\u001b[0;36m:\u001b[38;5;192msolve_poisson_DFT\u001b[0;36m:\u001b[0;32m106\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08d7b1a0 for AUX in \u001b[38;5;227mpoisson_solvers.c\u001b[0;36m:\u001b[38;5;192msolve_poisson_DFT\u001b[0;36m:\u001b[0;32m116\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Getting gravitational potential, periodic boundary conditions (using 32 cores) done.\n",
"[02:24:25\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Acceleration loop, direction 0...\n",
"[02:24:25\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Acceleration loop, direction 0 done.\n",
"[02:24:25\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Acceleration loop, direction 1...\n",
"[02:24:25\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Acceleration loop, direction 1 done.\n",
"[02:24:25\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Acceleration loop, direction 2...\n",
"[02:24:25\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Acceleration loop, direction 2 done.\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08c7b190 for g_pad in \u001b[38;5;227mdiagnostic.c\u001b[0;36m:\u001b[38;5;192mcompute_force_on_particle\u001b[0;36m:\u001b[0;32m70\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08c1b190 for xwopb in \u001b[38;5;227mdiagnostic.c\u001b[0;36m:\u001b[38;5;192mrun_force_diagnostic\u001b[0;36m:\u001b[0;32m227\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]====|Computing force for particle pair 1, bin 14: [1.424, 2.393] done. Total: 17 / max 60 pairs. Trials 2064 / max 100000000.\n",
"[02:24:25\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]====|Computing force for particle pair 2, bin 13: [0.848, 1.424]. Total: 18 / max 60 pairs...\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated memory (393204 bytes) at 0x55cb08c1b190 for xwopb in \u001b[38;5;227mdiagnostic.c\u001b[0;36m:\u001b[38;5;192mrun_force_diagnostic\u001b[0;36m:\u001b[0;32m207\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated memory (1048576 bytes) at 0x55cb08c7b190 for g_pad in \u001b[38;5;227mdiagnostic.c\u001b[0;36m:\u001b[38;5;192mcompute_force_on_particle\u001b[0;36m:\u001b[0;32m32\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mdp3m0=1.000000\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mdp3m1=1.000000\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mdp3m2=1.000000\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mGiven the available memory, 4095 threads could be allocated and 32 threads will be used in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel\u001b[0;36m:\u001b[0;32m347\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mGiven the available memory, 4095 threads could be allocated and 32 threads will be used in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m73\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Getting density contrast (using 32 cores and 32 arrays, parallel routine 1)...\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mPerforming CiC binning...\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 0...\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148950000b60 for threadedDensity[9] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 9...\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148940000b60 for threadedDensity[27] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148960000b60 for threadedDensity[13] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148918000b60 for threadedDensity[15] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148968000b60 for threadedDensity[10] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 15...\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 10...\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1488d8000b60 for threadedDensity[29] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1488e0000b60 for threadedDensity[6] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 29...\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 6...\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 13...\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148930000b60 for threadedDensity[14] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148938000b60 for threadedDensity[18] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 14...\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 18...\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1489b8000b60 for threadedDensity[4] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148998000b60 for threadedDensity[25] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148920000b60 for threadedDensity[12] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 25...\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 12...\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 4...\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1488e8000b60 for threadedDensity[2] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 2...\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148980000b60 for threadedDensity[11] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1488f0000b60 for threadedDensity[24] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 11...\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 24...\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1488d0000b60 for threadedDensity[5] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148958000b60 for threadedDensity[22] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 5...\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 22...\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148908000b60 for threadedDensity[8] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148978000b60 for threadedDensity[26] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1488dc000b60 for threadedDensity[17] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 26...\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 17...\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 8...\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148910000b60 for threadedDensity[23] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 23...\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148928000b60 for threadedDensity[20] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 20...\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148988000b60 for threadedDensity[28] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1489b0000b60 for threadedDensity[1] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 28...\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 1...\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148990000b60 for threadedDensity[21] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1488f8000b60 for threadedDensity[19] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 27...\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 19...\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 21...\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1489a8000b60 for threadedDensity[30] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148970000b60 for threadedDensity[7] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 30...\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 7...\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1489a0000b60 for threadedDensity[3] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 3...\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148948000b60 for threadedDensity[31] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 31...\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148900000b60 for threadedDensity[16] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 16...\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 5 done.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 29 done.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 6 done.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 31 done.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 22 done.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 16 done.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 4 done.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 2 done.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 18 done.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 14 done.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 25 done.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 12 done.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 15 done.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 10 done.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 23 done.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 8 done.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 24 done.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 11 done.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 9 done.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 20 done.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 17 done.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 26 done.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 0 done.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 28 done.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 1 done.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 21 done.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 3 done.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 27 done.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 7 done.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 30 done.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 19 done.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 13 done.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mPerforming CiC done.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mPerforming CiC reduction...\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x1489b0000b60 for threadedDensity[1] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x1488e8000b60 for threadedDensity[2] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x1489a0000b60 for threadedDensity[3] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x1489b8000b60 for threadedDensity[4] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x1488d0000b60 for threadedDensity[5] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x1488e0000b60 for threadedDensity[6] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148970000b60 for threadedDensity[7] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148908000b60 for threadedDensity[8] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148950000b60 for threadedDensity[9] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148968000b60 for threadedDensity[10] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148980000b60 for threadedDensity[11] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148920000b60 for threadedDensity[12] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148960000b60 for threadedDensity[13] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148930000b60 for threadedDensity[14] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148918000b60 for threadedDensity[15] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148900000b60 for threadedDensity[16] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x1488dc000b60 for threadedDensity[17] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148938000b60 for threadedDensity[18] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x1488f8000b60 for threadedDensity[19] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148928000b60 for threadedDensity[20] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148990000b60 for threadedDensity[21] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148958000b60 for threadedDensity[22] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148910000b60 for threadedDensity[23] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x1488f0000b60 for threadedDensity[24] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:25\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148998000b60 for threadedDensity[25] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:26\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148978000b60 for threadedDensity[26] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:26\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148940000b60 for threadedDensity[27] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:26\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148988000b60 for threadedDensity[28] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:26\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x1488d8000b60 for threadedDensity[29] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:26\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x1489a8000b60 for threadedDensity[30] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:26\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148948000b60 for threadedDensity[31] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:26\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mPerforming CiC reduction done.\u001b[00m\n",
"[02:24:26\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Getting density contrast (using 32 cores and 32 arrays, parallel routine 1) done.\n",
"[02:24:26\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Getting gravitational potential, periodic boundary conditions (using 32 cores)...\n",
"[02:24:26\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (1081344 bytes) at 0x55cb08d7b1a0 for AUX in \u001b[38;5;227mpoisson_solvers.c\u001b[0;36m:\u001b[38;5;192msolve_poisson_DFT\u001b[0;36m:\u001b[0;32m106\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:26\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08d7b1a0 for AUX in \u001b[38;5;227mpoisson_solvers.c\u001b[0;36m:\u001b[38;5;192msolve_poisson_DFT\u001b[0;36m:\u001b[0;32m116\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:26\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Getting gravitational potential, periodic boundary conditions (using 32 cores) done.\n",
"[02:24:26\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Acceleration loop, direction 0...\n",
"[02:24:26\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Acceleration loop, direction 0 done.\n",
"[02:24:26\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Acceleration loop, direction 1...\n",
"[02:24:26\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Acceleration loop, direction 1 done.\n",
"[02:24:26\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Acceleration loop, direction 2...\n",
"[02:24:26\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Acceleration loop, direction 2 done.\n",
"[02:24:26\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08c7b190 for g_pad in \u001b[38;5;227mdiagnostic.c\u001b[0;36m:\u001b[38;5;192mcompute_force_on_particle\u001b[0;36m:\u001b[0;32m70\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:26\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08c1b190 for xwopb in \u001b[38;5;227mdiagnostic.c\u001b[0;36m:\u001b[38;5;192mrun_force_diagnostic\u001b[0;36m:\u001b[0;32m227\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:26\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]====|Computing force for particle pair 2, bin 13: [0.848, 1.424] done. Total: 18 / max 60 pairs. Trials 3244 / max 100000000.\n",
"[02:24:26\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]====|Computing force for particle pair 2, bin 14: [1.424, 2.393]. Total: 19 / max 60 pairs...\n",
"[02:24:26\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated memory (393204 bytes) at 0x55cb08c1b190 for xwopb in \u001b[38;5;227mdiagnostic.c\u001b[0;36m:\u001b[38;5;192mrun_force_diagnostic\u001b[0;36m:\u001b[0;32m207\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:26\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated memory (1048576 bytes) at 0x55cb08c7b190 for g_pad in \u001b[38;5;227mdiagnostic.c\u001b[0;36m:\u001b[38;5;192mcompute_force_on_particle\u001b[0;36m:\u001b[0;32m32\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:26\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mdp3m0=1.000000\u001b[00m\n",
"[02:24:26\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mdp3m1=1.000000\u001b[00m\n",
"[02:24:26\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mdp3m2=1.000000\u001b[00m\n",
"[02:24:26\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mGiven the available memory, 4095 threads could be allocated and 32 threads will be used in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel\u001b[0;36m:\u001b[0;32m347\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:26\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mGiven the available memory, 4095 threads could be allocated and 32 threads will be used in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m73\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:26\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Getting density contrast (using 32 cores and 32 arrays, parallel routine 1)...\n",
"[02:24:26\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mPerforming CiC binning...\u001b[00m\n",
"[02:24:26\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 0...\u001b[00m\n",
"[02:24:26\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148940000b60 for threadedDensity[27] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:26\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 27...\u001b[00m\n",
"[02:24:26\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148950000b60 for threadedDensity[9] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:26\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1488dc000b60 for threadedDensity[17] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:26\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148978000b60 for threadedDensity[26] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:26\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 17...\u001b[00m\n",
"[02:24:26\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 26...\u001b[00m\n",
"[02:24:26\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1488d8000b60 for threadedDensity[29] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:26\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1488e0000b60 for threadedDensity[6] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:26\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 29...\u001b[00m\n",
"[02:24:26\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 6...\u001b[00m\n",
"[02:24:26\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148960000b60 for threadedDensity[13] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:26\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148900000b60 for threadedDensity[16] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:26\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 13...\u001b[00m\n",
"[02:24:26\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 16...\u001b[00m\n",
"[02:24:26\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1489b0000b60 for threadedDensity[1] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:26\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148988000b60 for threadedDensity[28] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:26\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 1...\u001b[00m\n",
"[02:24:26\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 28...\u001b[00m\n",
"[02:24:26\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148938000b60 for threadedDensity[18] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:26\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148930000b60 for threadedDensity[14] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:26\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 18...\u001b[00m\n",
"[02:24:26\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 14...\u001b[00m\n",
"[02:24:26\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1489b8000b60 for threadedDensity[4] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:26\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148918000b60 for threadedDensity[15] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:26\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148968000b60 for threadedDensity[10] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:26\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 15...\u001b[00m\n",
"[02:24:26\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 10...\u001b[00m\n",
"[02:24:26\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 4...\u001b[00m\n",
"[02:24:26\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 9...\u001b[00m\n",
"[02:24:26\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148928000b60 for threadedDensity[20] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:26\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148920000b60 for threadedDensity[12] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:26\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148998000b60 for threadedDensity[25] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:26\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 12...\u001b[00m\n",
"[02:24:26\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 25...\u001b[00m\n",
"[02:24:26\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1488e8000b60 for threadedDensity[2] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:26\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148908000b60 for threadedDensity[8] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:26\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 2...\u001b[00m\n",
"[02:24:26\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148958000b60 for threadedDensity[22] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:26\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 8...\u001b[00m\n",
"[02:24:26\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 22...\u001b[00m\n",
"[02:24:26\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 20...\u001b[00m\n",
"[02:24:26\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1488d0000b60 for threadedDensity[5] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:26\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148910000b60 for threadedDensity[23] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:26\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148980000b60 for threadedDensity[11] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:26\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1488f0000b60 for threadedDensity[24] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:26\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 11...\u001b[00m\n",
"[02:24:26\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 24...\u001b[00m\n",
"[02:24:26\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 23...\u001b[00m\n",
"[02:24:26\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 5...\u001b[00m\n",
"[02:24:26\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148990000b60 for threadedDensity[21] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:26\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1489a8000b60 for threadedDensity[30] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:26\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148970000b60 for threadedDensity[7] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:26\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 30...\u001b[00m\n",
"[02:24:26\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 7...\u001b[00m\n",
"[02:24:26\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 21...\u001b[00m\n",
"[02:24:26\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1488f8000b60 for threadedDensity[19] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:26\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 19...\u001b[00m\n",
"[02:24:26\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1489a0000b60 for threadedDensity[3] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:26\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 3...\u001b[00m\n",
"[02:24:26\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148948000b60 for threadedDensity[31] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:26\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 31...\u001b[00m\n",
"[02:24:26\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 22 done.\u001b[00m\n",
"[02:24:26\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 31 done.\u001b[00m\n",
"[02:24:26\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 29 done.\u001b[00m\n",
"[02:24:26\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 6 done.\u001b[00m\n",
"[02:24:26\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 2 done.\u001b[00m\n",
"[02:24:26\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 13 done.\u001b[00m\n",
"[02:24:26\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 16 done.\u001b[00m\n",
"[02:24:26\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 12 done.\u001b[00m\n",
"[02:24:26\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 25 done.\u001b[00m\n",
"[02:24:26\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 14 done.\u001b[00m\n",
"[02:24:26\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 18 done.\u001b[00m\n",
"[02:24:26\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 8 done.\u001b[00m\n",
"[02:24:26\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 23 done.\u001b[00m\n",
"[02:24:26\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 15 done.\u001b[00m\n",
"[02:24:26\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 10 done.\u001b[00m\n",
"[02:24:26\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 24 done.\u001b[00m\n",
"[02:24:26\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 11 done.\u001b[00m\n",
"[02:24:26\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 20 done.\u001b[00m\n",
"[02:24:26\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 9 done.\u001b[00m\n",
"[02:24:26\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 0 done.\u001b[00m\n",
"[02:24:26\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 5 done.\u001b[00m\n",
"[02:24:26\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 28 done.\u001b[00m\n",
"[02:24:26\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 1 done.\u001b[00m\n",
"[02:24:26\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 21 done.\u001b[00m\n",
"[02:24:26\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 3 done.\u001b[00m\n",
"[02:24:26\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 26 done.\u001b[00m\n",
"[02:24:26\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 17 done.\u001b[00m\n",
"[02:24:26\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 27 done.\u001b[00m\n",
"[02:24:26\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 19 done.\u001b[00m\n",
"[02:24:26\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 30 done.\u001b[00m\n",
"[02:24:26\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 7 done.\u001b[00m\n",
"[02:24:26\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 4 done.\u001b[00m\n",
"[02:24:26\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mPerforming CiC done.\u001b[00m\n",
"[02:24:26\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mPerforming CiC reduction...\u001b[00m\n",
"[02:24:26\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x1489b0000b60 for threadedDensity[1] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:26\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x1488e8000b60 for threadedDensity[2] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:26\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x1489a0000b60 for threadedDensity[3] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:26\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x1489b8000b60 for threadedDensity[4] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:26\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x1488d0000b60 for threadedDensity[5] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:26\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x1488e0000b60 for threadedDensity[6] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:26\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148970000b60 for threadedDensity[7] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:26\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148908000b60 for threadedDensity[8] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:26\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148950000b60 for threadedDensity[9] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:26\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148968000b60 for threadedDensity[10] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:26\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148980000b60 for threadedDensity[11] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:26\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148920000b60 for threadedDensity[12] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:26\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148960000b60 for threadedDensity[13] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:26\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148930000b60 for threadedDensity[14] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:26\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148918000b60 for threadedDensity[15] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:26\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148900000b60 for threadedDensity[16] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:26\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x1488dc000b60 for threadedDensity[17] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:26\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148938000b60 for threadedDensity[18] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:26\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x1488f8000b60 for threadedDensity[19] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:26\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148928000b60 for threadedDensity[20] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:26\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148990000b60 for threadedDensity[21] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:26\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148958000b60 for threadedDensity[22] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:26\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148910000b60 for threadedDensity[23] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:26\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x1488f0000b60 for threadedDensity[24] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:26\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148998000b60 for threadedDensity[25] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:26\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148978000b60 for threadedDensity[26] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:26\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148940000b60 for threadedDensity[27] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:26\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148988000b60 for threadedDensity[28] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:26\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x1488d8000b60 for threadedDensity[29] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:26\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x1489a8000b60 for threadedDensity[30] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:26\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148948000b60 for threadedDensity[31] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:26\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mPerforming CiC reduction done.\u001b[00m\n",
"[02:24:26\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Getting density contrast (using 32 cores and 32 arrays, parallel routine 1) done.\n",
"[02:24:26\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Getting gravitational potential, periodic boundary conditions (using 32 cores)...\n",
"[02:24:26\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (1081344 bytes) at 0x55cb08d7b1a0 for AUX in \u001b[38;5;227mpoisson_solvers.c\u001b[0;36m:\u001b[38;5;192msolve_poisson_DFT\u001b[0;36m:\u001b[0;32m106\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:26\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08d7b1a0 for AUX in \u001b[38;5;227mpoisson_solvers.c\u001b[0;36m:\u001b[38;5;192msolve_poisson_DFT\u001b[0;36m:\u001b[0;32m116\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:26\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Getting gravitational potential, periodic boundary conditions (using 32 cores) done.\n",
"[02:24:26\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Acceleration loop, direction 0...\n",
"[02:24:26\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Acceleration loop, direction 0 done.\n",
"[02:24:26\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Acceleration loop, direction 1...\n",
"[02:24:26\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Acceleration loop, direction 1 done.\n",
"[02:24:26\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Acceleration loop, direction 2...\n",
"[02:24:26\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Acceleration loop, direction 2 done.\n",
"[02:24:26\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08c7b190 for g_pad in \u001b[38;5;227mdiagnostic.c\u001b[0;36m:\u001b[38;5;192mcompute_force_on_particle\u001b[0;36m:\u001b[0;32m70\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:26\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08c1b190 for xwopb in \u001b[38;5;227mdiagnostic.c\u001b[0;36m:\u001b[38;5;192mrun_force_diagnostic\u001b[0;36m:\u001b[0;32m227\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:26\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]====|Computing force for particle pair 2, bin 14: [1.424, 2.393] done. Total: 19 / max 60 pairs. Trials 3567 / max 100000000.\n",
"[02:24:26\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]====|Computing force for particle pair 1, bin 12: [0.505, 0.848]. Total: 20 / max 60 pairs...\n",
"[02:24:26\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated memory (393204 bytes) at 0x55cb08c1b190 for xwopb in \u001b[38;5;227mdiagnostic.c\u001b[0;36m:\u001b[38;5;192mrun_force_diagnostic\u001b[0;36m:\u001b[0;32m207\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:26\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated memory (1048576 bytes) at 0x55cb08c7b190 for g_pad in \u001b[38;5;227mdiagnostic.c\u001b[0;36m:\u001b[38;5;192mcompute_force_on_particle\u001b[0;36m:\u001b[0;32m32\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:26\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mdp3m0=1.000000\u001b[00m\n",
"[02:24:26\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mdp3m1=1.000000\u001b[00m\n",
"[02:24:26\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mdp3m2=1.000000\u001b[00m\n",
"[02:24:26\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mGiven the available memory, 4095 threads could be allocated and 32 threads will be used in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel\u001b[0;36m:\u001b[0;32m347\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:26\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mGiven the available memory, 4095 threads could be allocated and 32 threads will be used in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m73\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:26\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Getting density contrast (using 32 cores and 32 arrays, parallel routine 1)...\n",
"[02:24:26\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mPerforming CiC binning...\u001b[00m\n",
"[02:24:26\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 0...\u001b[00m\n",
"[02:24:26\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148900000b60 for threadedDensity[16] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:26\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 16...\u001b[00m\n",
"[02:24:26\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148960000b60 for threadedDensity[13] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:26\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148988000b60 for threadedDensity[28] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:26\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 13...\u001b[00m\n",
"[02:24:26\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148980000b60 for threadedDensity[11] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:26\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148968000b60 for threadedDensity[10] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:26\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148918000b60 for threadedDensity[15] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:26\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 10...\u001b[00m\n",
"[02:24:26\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 15...\u001b[00m\n",
"[02:24:26\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148938000b60 for threadedDensity[18] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:26\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148930000b60 for threadedDensity[14] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:26\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 18...\u001b[00m\n",
"[02:24:26\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 14...\u001b[00m\n",
"[02:24:26\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1488d8000b60 for threadedDensity[29] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:26\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1488e0000b60 for threadedDensity[6] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:26\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 29...\u001b[00m\n",
"[02:24:26\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 6...\u001b[00m\n",
"[02:24:26\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1489b8000b60 for threadedDensity[4] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:26\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 4...\u001b[00m\n",
"[02:24:26\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1488e8000b60 for threadedDensity[2] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:26\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 2...\u001b[00m\n",
"[02:24:26\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1488f0000b60 for threadedDensity[24] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:26\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 11...\u001b[00m\n",
"[02:24:26\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 24...\u001b[00m\n",
"[02:24:26\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148920000b60 for threadedDensity[12] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:26\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148908000b60 for threadedDensity[8] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:26\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148998000b60 for threadedDensity[25] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:26\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 12...\u001b[00m\n",
"[02:24:26\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 25...\u001b[00m\n",
"[02:24:26\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148958000b60 for threadedDensity[22] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:26\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 22...\u001b[00m\n",
"[02:24:26\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 8...\u001b[00m\n",
"[02:24:26\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148910000b60 for threadedDensity[23] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:26\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148928000b60 for threadedDensity[20] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:26\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 23...\u001b[00m\n",
"[02:24:26\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 20...\u001b[00m\n",
"[02:24:26\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148990000b60 for threadedDensity[21] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:26\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1488d0000b60 for threadedDensity[5] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:26\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148950000b60 for threadedDensity[9] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:26\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 5...\u001b[00m\n",
"[02:24:26\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 9...\u001b[00m\n",
"[02:24:26\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148978000b60 for threadedDensity[26] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:26\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1488dc000b60 for threadedDensity[17] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:26\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 26...\u001b[00m\n",
"[02:24:26\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 17...\u001b[00m\n",
"[02:24:26\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 28...\u001b[00m\n",
"[02:24:26\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1489b0000b60 for threadedDensity[1] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:26\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 21...\u001b[00m\n",
"[02:24:26\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1489a8000b60 for threadedDensity[30] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:26\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148970000b60 for threadedDensity[7] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:26\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 30...\u001b[00m\n",
"[02:24:26\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 7...\u001b[00m\n",
"[02:24:26\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 1...\u001b[00m\n",
"[02:24:26\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148940000b60 for threadedDensity[27] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:26\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1488f8000b60 for threadedDensity[19] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:26\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 27...\u001b[00m\n",
"[02:24:26\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 19...\u001b[00m\n",
"[02:24:26\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1489a0000b60 for threadedDensity[3] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:26\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 3...\u001b[00m\n",
"[02:24:26\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148948000b60 for threadedDensity[31] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:26\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 31...\u001b[00m\n",
"[02:24:26\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 22 done.\u001b[00m\n",
"[02:24:26\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 31 done.\u001b[00m\n",
"[02:24:26\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 29 done.\u001b[00m\n",
"[02:24:26\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 6 done.\u001b[00m\n",
"[02:24:26\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 16 done.\u001b[00m\n",
"[02:24:26\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 13 done.\u001b[00m\n",
"[02:24:26\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 4 done.\u001b[00m\n",
"[02:24:26\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 2 done.\u001b[00m\n",
"[02:24:26\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 18 done.\u001b[00m\n",
"[02:24:26\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 14 done.\u001b[00m\n",
"[02:24:26\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 25 done.\u001b[00m\n",
"[02:24:26\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 12 done.\u001b[00m\n",
"[02:24:26\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 8 done.\u001b[00m\n",
"[02:24:26\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 23 done.\u001b[00m\n",
"[02:24:26\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 15 done.\u001b[00m\n",
"[02:24:26\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 10 done.\u001b[00m\n",
"[02:24:26\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 24 done.\u001b[00m\n",
"[02:24:26\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 11 done.\u001b[00m\n",
"[02:24:26\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 20 done.\u001b[00m\n",
"[02:24:26\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 0 done.\u001b[00m\n",
"[02:24:26\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 28 done.\u001b[00m\n",
"[02:24:26\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 1 done.\u001b[00m\n",
"[02:24:26\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 17 done.\u001b[00m\n",
"[02:24:26\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 26 done.\u001b[00m\n",
"[02:24:26\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 21 done.\u001b[00m\n",
"[02:24:26\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 3 done.\u001b[00m\n",
"[02:24:26\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 5 done.\u001b[00m\n",
"[02:24:26\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 9 done.\u001b[00m\n",
"[02:24:26\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 19 done.\u001b[00m\n",
"[02:24:26\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 27 done.\u001b[00m\n",
"[02:24:26\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 30 done.\u001b[00m\n",
"[02:24:26\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 7 done.\u001b[00m\n",
"[02:24:26\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mPerforming CiC done.\u001b[00m\n",
"[02:24:26\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mPerforming CiC reduction...\u001b[00m\n",
"[02:24:26\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x1489b0000b60 for threadedDensity[1] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:26\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x1488e8000b60 for threadedDensity[2] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:26\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x1489a0000b60 for threadedDensity[3] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:26\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x1489b8000b60 for threadedDensity[4] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:26\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x1488d0000b60 for threadedDensity[5] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:26\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x1488e0000b60 for threadedDensity[6] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:26\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148970000b60 for threadedDensity[7] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:26\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148908000b60 for threadedDensity[8] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:26\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148950000b60 for threadedDensity[9] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:26\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148968000b60 for threadedDensity[10] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:26\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148980000b60 for threadedDensity[11] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:26\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148920000b60 for threadedDensity[12] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:26\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148960000b60 for threadedDensity[13] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:26\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148930000b60 for threadedDensity[14] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:26\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148918000b60 for threadedDensity[15] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:26\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148900000b60 for threadedDensity[16] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:26\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x1488dc000b60 for threadedDensity[17] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:26\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148938000b60 for threadedDensity[18] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:26\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x1488f8000b60 for threadedDensity[19] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:26\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148928000b60 for threadedDensity[20] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:26\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148990000b60 for threadedDensity[21] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:26\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148958000b60 for threadedDensity[22] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:26\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148910000b60 for threadedDensity[23] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:26\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x1488f0000b60 for threadedDensity[24] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:26\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148998000b60 for threadedDensity[25] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:26\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148978000b60 for threadedDensity[26] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:26\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148940000b60 for threadedDensity[27] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:26\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148988000b60 for threadedDensity[28] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:26\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x1488d8000b60 for threadedDensity[29] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:26\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x1489a8000b60 for threadedDensity[30] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:26\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148948000b60 for threadedDensity[31] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:26\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mPerforming CiC reduction done.\u001b[00m\n",
"[02:24:26\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Getting density contrast (using 32 cores and 32 arrays, parallel routine 1) done.\n",
"[02:24:26\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Getting gravitational potential, periodic boundary conditions (using 32 cores)...\n",
"[02:24:26\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (1081344 bytes) at 0x55cb08d7b1a0 for AUX in \u001b[38;5;227mpoisson_solvers.c\u001b[0;36m:\u001b[38;5;192msolve_poisson_DFT\u001b[0;36m:\u001b[0;32m106\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:26\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08d7b1a0 for AUX in \u001b[38;5;227mpoisson_solvers.c\u001b[0;36m:\u001b[38;5;192msolve_poisson_DFT\u001b[0;36m:\u001b[0;32m116\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:26\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Getting gravitational potential, periodic boundary conditions (using 32 cores) done.\n",
"[02:24:26\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Acceleration loop, direction 0...\n",
"[02:24:26\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Acceleration loop, direction 0 done.\n",
"[02:24:26\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Acceleration loop, direction 1...\n",
"[02:24:26\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Acceleration loop, direction 1 done.\n",
"[02:24:26\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Acceleration loop, direction 2...\n",
"[02:24:26\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Acceleration loop, direction 2 done.\n",
"[02:24:26\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08c7b190 for g_pad in \u001b[38;5;227mdiagnostic.c\u001b[0;36m:\u001b[38;5;192mcompute_force_on_particle\u001b[0;36m:\u001b[0;32m70\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:26\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08c1b190 for xwopb in \u001b[38;5;227mdiagnostic.c\u001b[0;36m:\u001b[38;5;192mrun_force_diagnostic\u001b[0;36m:\u001b[0;32m227\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:26\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]====|Computing force for particle pair 1, bin 12: [0.505, 0.848] done. Total: 20 / max 60 pairs. Trials 4278 / max 100000000.\n",
"[02:24:26\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]====|Computing force for particle pair 3, bin 14: [1.424, 2.393]. Total: 21 / max 60 pairs...\n",
"[02:24:26\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated memory (393204 bytes) at 0x55cb08c1b190 for xwopb in \u001b[38;5;227mdiagnostic.c\u001b[0;36m:\u001b[38;5;192mrun_force_diagnostic\u001b[0;36m:\u001b[0;32m207\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:26\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated memory (1048576 bytes) at 0x55cb08c7b190 for g_pad in \u001b[38;5;227mdiagnostic.c\u001b[0;36m:\u001b[38;5;192mcompute_force_on_particle\u001b[0;36m:\u001b[0;32m32\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:26\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mdp3m0=1.000000\u001b[00m\n",
"[02:24:26\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mdp3m1=1.000000\u001b[00m\n",
"[02:24:26\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mdp3m2=1.000000\u001b[00m\n",
"[02:24:26\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mGiven the available memory, 4095 threads could be allocated and 32 threads will be used in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel\u001b[0;36m:\u001b[0;32m347\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:26\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mGiven the available memory, 4095 threads could be allocated and 32 threads will be used in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m73\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:26\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Getting density contrast (using 32 cores and 32 arrays, parallel routine 1)...\n",
"[02:24:26\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mPerforming CiC binning...\u001b[00m\n",
"[02:24:26\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 0...\u001b[00m\n",
"[02:24:26\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148950000b60 for threadedDensity[9] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:26\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148960000b60 for threadedDensity[13] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:26\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148900000b60 for threadedDensity[16] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:26\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 13...\u001b[00m\n",
"[02:24:26\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 16...\u001b[00m\n",
"[02:24:26\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148928000b60 for threadedDensity[20] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:26\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148978000b60 for threadedDensity[26] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:26\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1488dc000b60 for threadedDensity[17] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:26\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 26...\u001b[00m\n",
"[02:24:26\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 17...\u001b[00m\n",
"[02:24:26\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 9...\u001b[00m\n",
"[02:24:26\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1488d0000b60 for threadedDensity[5] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:26\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1488d8000b60 for threadedDensity[29] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:26\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148968000b60 for threadedDensity[10] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:26\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 29...\u001b[00m\n",
"[02:24:26\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1488e0000b60 for threadedDensity[6] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:26\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148930000b60 for threadedDensity[14] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:26\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148938000b60 for threadedDensity[18] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:26\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 14...\u001b[00m\n",
"[02:24:26\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 18...\u001b[00m\n",
"[02:24:26\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 6...\u001b[00m\n",
"[02:24:26\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1489b8000b60 for threadedDensity[4] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:26\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1488e8000b60 for threadedDensity[2] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:26\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 4...\u001b[00m\n",
"[02:24:26\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 2...\u001b[00m\n",
"[02:24:26\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148918000b60 for threadedDensity[15] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:26\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 10...\u001b[00m\n",
"[02:24:26\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 15...\u001b[00m\n",
"[02:24:26\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148908000b60 for threadedDensity[8] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:26\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148920000b60 for threadedDensity[12] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:26\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148998000b60 for threadedDensity[25] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:26\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 12...\u001b[00m\n",
"[02:24:26\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 25...\u001b[00m\n",
"[02:24:26\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148958000b60 for threadedDensity[22] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:26\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148910000b60 for threadedDensity[23] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:26\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 8...\u001b[00m\n",
"[02:24:26\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 23...\u001b[00m\n",
"[02:24:26\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 22...\u001b[00m\n",
"[02:24:26\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1488f0000b60 for threadedDensity[24] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:26\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148980000b60 for threadedDensity[11] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:26\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 24...\u001b[00m\n",
"[02:24:26\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 11...\u001b[00m\n",
"[02:24:26\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 20...\u001b[00m\n",
"[02:24:26\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1489a0000b60 for threadedDensity[3] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:26\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 5...\u001b[00m\n",
"[02:24:26\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1489b0000b60 for threadedDensity[1] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:26\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148988000b60 for threadedDensity[28] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:26\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 1...\u001b[00m\n",
"[02:24:26\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 28...\u001b[00m\n",
"[02:24:26\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 3...\u001b[00m\n",
"[02:24:26\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1489a8000b60 for threadedDensity[30] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:26\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148970000b60 for threadedDensity[7] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:26\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 30...\u001b[00m\n",
"[02:24:26\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 7...\u001b[00m\n",
"[02:24:26\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1488f8000b60 for threadedDensity[19] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:26\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148940000b60 for threadedDensity[27] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:26\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 19...\u001b[00m\n",
"[02:24:26\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 27...\u001b[00m\n",
"[02:24:26\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148948000b60 for threadedDensity[31] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:26\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 31...\u001b[00m\n",
"[02:24:26\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148990000b60 for threadedDensity[21] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:26\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 21...\u001b[00m\n",
"[02:24:26\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 3 done.\u001b[00m\n",
"[02:24:26\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 21 done.\u001b[00m\n",
"[02:24:26\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 6 done.\u001b[00m\n",
"[02:24:26\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 29 done.\u001b[00m\n",
"[02:24:26\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 22 done.\u001b[00m\n",
"[02:24:26\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 31 done.\u001b[00m\n",
"[02:24:26\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 16 done.\u001b[00m\n",
"[02:24:26\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 13 done.\u001b[00m\n",
"[02:24:26\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 4 done.\u001b[00m\n",
"[02:24:26\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 2 done.\u001b[00m\n",
"[02:24:26\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 14 done.\u001b[00m\n",
"[02:24:26\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 18 done.\u001b[00m\n",
"[02:24:26\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 12 done.\u001b[00m\n",
"[02:24:26\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 25 done.\u001b[00m\n",
"[02:24:26\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 23 done.\u001b[00m\n",
"[02:24:26\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 8 done.\u001b[00m\n",
"[02:24:26\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 10 done.\u001b[00m\n",
"[02:24:26\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 15 done.\u001b[00m\n",
"[02:24:26\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 20 done.\u001b[00m\n",
"[02:24:26\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 24 done.\u001b[00m\n",
"[02:24:26\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 11 done.\u001b[00m\n",
"[02:24:26\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 28 done.\u001b[00m\n",
"[02:24:26\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 1 done.\u001b[00m\n",
"[02:24:26\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 26 done.\u001b[00m\n",
"[02:24:26\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 17 done.\u001b[00m\n",
"[02:24:26\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 9 done.\u001b[00m\n",
"[02:24:26\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 5 done.\u001b[00m\n",
"[02:24:26\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 27 done.\u001b[00m\n",
"[02:24:26\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 19 done.\u001b[00m\n",
"[02:24:26\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 7 done.\u001b[00m\n",
"[02:24:26\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 30 done.\u001b[00m\n",
"[02:24:26\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 0 done.\u001b[00m\n",
"[02:24:26\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mPerforming CiC done.\u001b[00m\n",
"[02:24:26\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mPerforming CiC reduction...\u001b[00m\n",
"[02:24:26\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x1489b0000b60 for threadedDensity[1] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:26\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x1488e8000b60 for threadedDensity[2] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:26\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x1489a0000b60 for threadedDensity[3] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:26\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x1489b8000b60 for threadedDensity[4] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:26\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x1488d0000b60 for threadedDensity[5] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:26\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x1488e0000b60 for threadedDensity[6] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:26\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148970000b60 for threadedDensity[7] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:26\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148908000b60 for threadedDensity[8] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:26\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148950000b60 for threadedDensity[9] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:26\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148968000b60 for threadedDensity[10] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:26\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148980000b60 for threadedDensity[11] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:26\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148920000b60 for threadedDensity[12] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:26\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148960000b60 for threadedDensity[13] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:26\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148930000b60 for threadedDensity[14] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:26\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148918000b60 for threadedDensity[15] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:26\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148900000b60 for threadedDensity[16] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:26\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x1488dc000b60 for threadedDensity[17] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:26\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148938000b60 for threadedDensity[18] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:26\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x1488f8000b60 for threadedDensity[19] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:26\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148928000b60 for threadedDensity[20] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:26\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148990000b60 for threadedDensity[21] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:26\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148958000b60 for threadedDensity[22] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:26\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148910000b60 for threadedDensity[23] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:26\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x1488f0000b60 for threadedDensity[24] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:26\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148998000b60 for threadedDensity[25] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:26\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148978000b60 for threadedDensity[26] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:26\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148940000b60 for threadedDensity[27] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:26\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148988000b60 for threadedDensity[28] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:26\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x1488d8000b60 for threadedDensity[29] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:26\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x1489a8000b60 for threadedDensity[30] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:26\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148948000b60 for threadedDensity[31] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:26\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mPerforming CiC reduction done.\u001b[00m\n",
"[02:24:26\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Getting density contrast (using 32 cores and 32 arrays, parallel routine 1) done.\n",
"[02:24:26\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Getting gravitational potential, periodic boundary conditions (using 32 cores)...\n",
"[02:24:26\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (1081344 bytes) at 0x55cb08d7b1a0 for AUX in \u001b[38;5;227mpoisson_solvers.c\u001b[0;36m:\u001b[38;5;192msolve_poisson_DFT\u001b[0;36m:\u001b[0;32m106\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:26\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08d7b1a0 for AUX in \u001b[38;5;227mpoisson_solvers.c\u001b[0;36m:\u001b[38;5;192msolve_poisson_DFT\u001b[0;36m:\u001b[0;32m116\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:26\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Getting gravitational potential, periodic boundary conditions (using 32 cores) done.\n",
"[02:24:26\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Acceleration loop, direction 0...\n",
"[02:24:26\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Acceleration loop, direction 0 done.\n",
"[02:24:26\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Acceleration loop, direction 1...\n",
"[02:24:26\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Acceleration loop, direction 1 done.\n",
"[02:24:26\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Acceleration loop, direction 2...\n",
"[02:24:26\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Acceleration loop, direction 2 done.\n",
"[02:24:26\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08c7b190 for g_pad in \u001b[38;5;227mdiagnostic.c\u001b[0;36m:\u001b[38;5;192mcompute_force_on_particle\u001b[0;36m:\u001b[0;32m70\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:26\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08c1b190 for xwopb in \u001b[38;5;227mdiagnostic.c\u001b[0;36m:\u001b[38;5;192mrun_force_diagnostic\u001b[0;36m:\u001b[0;32m227\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:26\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]====|Computing force for particle pair 3, bin 14: [1.424, 2.393] done. Total: 21 / max 60 pairs. Trials 5093 / max 100000000.\n",
"[02:24:26\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]====|Computing force for particle pair 2, bin 12: [0.505, 0.848]. Total: 22 / max 60 pairs...\n",
"[02:24:26\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated memory (393204 bytes) at 0x55cb08c1b190 for xwopb in \u001b[38;5;227mdiagnostic.c\u001b[0;36m:\u001b[38;5;192mrun_force_diagnostic\u001b[0;36m:\u001b[0;32m207\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:26\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated memory (1048576 bytes) at 0x55cb08c7b190 for g_pad in \u001b[38;5;227mdiagnostic.c\u001b[0;36m:\u001b[38;5;192mcompute_force_on_particle\u001b[0;36m:\u001b[0;32m32\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:26\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mdp3m0=1.000000\u001b[00m\n",
"[02:24:26\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mdp3m1=1.000000\u001b[00m\n",
"[02:24:26\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mdp3m2=1.000000\u001b[00m\n",
"[02:24:26\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mGiven the available memory, 4095 threads could be allocated and 32 threads will be used in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel\u001b[0;36m:\u001b[0;32m347\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:26\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mGiven the available memory, 4095 threads could be allocated and 32 threads will be used in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m73\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:26\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Getting density contrast (using 32 cores and 32 arrays, parallel routine 1)...\n",
"[02:24:26\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mPerforming CiC binning...\u001b[00m\n",
"[02:24:26\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 0...\u001b[00m\n",
"[02:24:26\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148908000b60 for threadedDensity[8] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:26\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148960000b60 for threadedDensity[13] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:26\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148900000b60 for threadedDensity[16] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:26\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 13...\u001b[00m\n",
"[02:24:26\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 16...\u001b[00m\n",
"[02:24:26\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 8...\u001b[00m\n",
"[02:24:26\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1488f8000b60 for threadedDensity[19] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:26\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148940000b60 for threadedDensity[27] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:26\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 19...\u001b[00m\n",
"[02:24:26\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 27...\u001b[00m\n",
"[02:24:26\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148990000b60 for threadedDensity[21] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:26\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148928000b60 for threadedDensity[20] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:26\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148978000b60 for threadedDensity[26] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:26\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1488dc000b60 for threadedDensity[17] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:26\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 26...\u001b[00m\n",
"[02:24:26\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 17...\u001b[00m\n",
"[02:24:26\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148938000b60 for threadedDensity[18] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:26\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148930000b60 for threadedDensity[14] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:26\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 18...\u001b[00m\n",
"[02:24:26\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 14...\u001b[00m\n",
"[02:24:26\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1488e8000b60 for threadedDensity[2] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:26\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1488e0000b60 for threadedDensity[6] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:26\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 2...\u001b[00m\n",
"[02:24:26\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 6...\u001b[00m\n",
"[02:24:26\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1488d8000b60 for threadedDensity[29] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:26\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148918000b60 for threadedDensity[15] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:26\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148968000b60 for threadedDensity[10] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:26\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 15...\u001b[00m\n",
"[02:24:26\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 10...\u001b[00m\n",
"[02:24:26\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 29...\u001b[00m\n",
"[02:24:26\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148920000b60 for threadedDensity[12] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:26\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1489a0000b60 for threadedDensity[3] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:26\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 20...\u001b[00m\n",
"[02:24:26\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 3...\u001b[00m\n",
"[02:24:26\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 12...\u001b[00m\n",
"[02:24:26\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148998000b60 for threadedDensity[25] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:26\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148958000b60 for threadedDensity[22] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:26\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 25...\u001b[00m\n",
"[02:24:26\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 22...\u001b[00m\n",
"[02:24:26\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1488f0000b60 for threadedDensity[24] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:26\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148980000b60 for threadedDensity[11] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:26\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 24...\u001b[00m\n",
"[02:24:26\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 11...\u001b[00m\n",
"[02:24:26\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 21...\u001b[00m\n",
"[02:24:26\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148988000b60 for threadedDensity[28] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:26\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1489b0000b60 for threadedDensity[1] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:26\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 28...\u001b[00m\n",
"[02:24:26\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 1...\u001b[00m\n",
"[02:24:26\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1488d0000b60 for threadedDensity[5] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:26\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1489a8000b60 for threadedDensity[30] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:26\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148970000b60 for threadedDensity[7] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:26\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 30...\u001b[00m\n",
"[02:24:26\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 7...\u001b[00m\n",
"[02:24:26\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 5...\u001b[00m\n",
"[02:24:26\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1489b8000b60 for threadedDensity[4] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:26\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 4...\u001b[00m\n",
"[02:24:26\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148948000b60 for threadedDensity[31] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:26\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 31...\u001b[00m\n",
"[02:24:26\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148950000b60 for threadedDensity[9] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:26\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 9...\u001b[00m\n",
"[02:24:26\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148910000b60 for threadedDensity[23] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:26\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 23...\u001b[00m\n",
"[02:24:26\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 6 done.\u001b[00m\n",
"[02:24:26\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 29 done.\u001b[00m\n",
"[02:24:26\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 31 done.\u001b[00m\n",
"[02:24:26\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 22 done.\u001b[00m\n",
"[02:24:26\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 2 done.\u001b[00m\n",
"[02:24:26\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 4 done.\u001b[00m\n",
"[02:24:26\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 13 done.\u001b[00m\n",
"[02:24:26\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 16 done.\u001b[00m\n",
"[02:24:26\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 14 done.\u001b[00m\n",
"[02:24:26\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 18 done.\u001b[00m\n",
"[02:24:26\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 25 done.\u001b[00m\n",
"[02:24:26\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 12 done.\u001b[00m\n",
"[02:24:26\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 10 done.\u001b[00m\n",
"[02:24:26\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 15 done.\u001b[00m\n",
"[02:24:26\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 8 done.\u001b[00m\n",
"[02:24:26\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 23 done.\u001b[00m\n",
"[02:24:26\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 24 done.\u001b[00m\n",
"[02:24:26\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 11 done.\u001b[00m\n",
"[02:24:26\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 3 done.\u001b[00m\n",
"[02:24:26\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 20 done.\u001b[00m\n",
"[02:24:26\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 5 done.\u001b[00m\n",
"[02:24:26\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 9 done.\u001b[00m\n",
"[02:24:26\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 21 done.\u001b[00m\n",
"[02:24:26\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 28 done.\u001b[00m\n",
"[02:24:26\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 1 done.\u001b[00m\n",
"[02:24:26\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 26 done.\u001b[00m\n",
"[02:24:26\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 17 done.\u001b[00m\n",
"[02:24:26\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 27 done.\u001b[00m\n",
"[02:24:26\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 19 done.\u001b[00m\n",
"[02:24:26\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 30 done.\u001b[00m\n",
"[02:24:26\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 7 done.\u001b[00m\n",
"[02:24:26\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 0 done.\u001b[00m\n",
"[02:24:26\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mPerforming CiC done.\u001b[00m\n",
"[02:24:26\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mPerforming CiC reduction...\u001b[00m\n",
"[02:24:26\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x1489b0000b60 for threadedDensity[1] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:26\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x1488e8000b60 for threadedDensity[2] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:26\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x1489a0000b60 for threadedDensity[3] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:26\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x1489b8000b60 for threadedDensity[4] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:26\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x1488d0000b60 for threadedDensity[5] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:26\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x1488e0000b60 for threadedDensity[6] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:26\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148970000b60 for threadedDensity[7] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:26\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148908000b60 for threadedDensity[8] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:26\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148950000b60 for threadedDensity[9] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:26\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148968000b60 for threadedDensity[10] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:26\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148980000b60 for threadedDensity[11] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:26\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148920000b60 for threadedDensity[12] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:26\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148960000b60 for threadedDensity[13] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:26\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148930000b60 for threadedDensity[14] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:26\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148918000b60 for threadedDensity[15] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:26\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148900000b60 for threadedDensity[16] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:26\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x1488dc000b60 for threadedDensity[17] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:26\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148938000b60 for threadedDensity[18] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:26\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x1488f8000b60 for threadedDensity[19] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:26\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148928000b60 for threadedDensity[20] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:26\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148990000b60 for threadedDensity[21] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:26\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148958000b60 for threadedDensity[22] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:26\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148910000b60 for threadedDensity[23] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:26\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x1488f0000b60 for threadedDensity[24] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:26\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148998000b60 for threadedDensity[25] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:26\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148978000b60 for threadedDensity[26] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:26\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148940000b60 for threadedDensity[27] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:26\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148988000b60 for threadedDensity[28] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:26\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x1488d8000b60 for threadedDensity[29] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:26\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x1489a8000b60 for threadedDensity[30] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:26\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148948000b60 for threadedDensity[31] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:26\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mPerforming CiC reduction done.\u001b[00m\n",
"[02:24:26\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Getting density contrast (using 32 cores and 32 arrays, parallel routine 1) done.\n",
"[02:24:26\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Getting gravitational potential, periodic boundary conditions (using 32 cores)...\n",
"[02:24:26\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (1081344 bytes) at 0x55cb08d7b1a0 for AUX in \u001b[38;5;227mpoisson_solvers.c\u001b[0;36m:\u001b[38;5;192msolve_poisson_DFT\u001b[0;36m:\u001b[0;32m106\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:26\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08d7b1a0 for AUX in \u001b[38;5;227mpoisson_solvers.c\u001b[0;36m:\u001b[38;5;192msolve_poisson_DFT\u001b[0;36m:\u001b[0;32m116\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:26\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Getting gravitational potential, periodic boundary conditions (using 32 cores) done.\n",
"[02:24:26\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Acceleration loop, direction 0...\n",
"[02:24:26\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Acceleration loop, direction 0 done.\n",
"[02:24:26\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Acceleration loop, direction 1...\n",
"[02:24:26\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Acceleration loop, direction 1 done.\n",
"[02:24:26\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Acceleration loop, direction 2...\n",
"[02:24:26\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Acceleration loop, direction 2 done.\n",
"[02:24:26\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08c7b190 for g_pad in \u001b[38;5;227mdiagnostic.c\u001b[0;36m:\u001b[38;5;192mcompute_force_on_particle\u001b[0;36m:\u001b[0;32m70\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:26\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08c1b190 for xwopb in \u001b[38;5;227mdiagnostic.c\u001b[0;36m:\u001b[38;5;192mrun_force_diagnostic\u001b[0;36m:\u001b[0;32m227\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:26\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]====|Computing force for particle pair 2, bin 12: [0.505, 0.848] done. Total: 22 / max 60 pairs. Trials 21476 / max 100000000.\n",
"[02:24:26\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]====|Computing force for particle pair 3, bin 12: [0.505, 0.848]. Total: 23 / max 60 pairs...\n",
"[02:24:26\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated memory (393204 bytes) at 0x55cb08c1b190 for xwopb in \u001b[38;5;227mdiagnostic.c\u001b[0;36m:\u001b[38;5;192mrun_force_diagnostic\u001b[0;36m:\u001b[0;32m207\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:26\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated memory (1048576 bytes) at 0x55cb08c7b190 for g_pad in \u001b[38;5;227mdiagnostic.c\u001b[0;36m:\u001b[38;5;192mcompute_force_on_particle\u001b[0;36m:\u001b[0;32m32\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:26\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mdp3m0=1.000000\u001b[00m\n",
"[02:24:26\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mdp3m1=1.000000\u001b[00m\n",
"[02:24:26\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mdp3m2=1.000000\u001b[00m\n",
"[02:24:26\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mGiven the available memory, 4095 threads could be allocated and 32 threads will be used in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel\u001b[0;36m:\u001b[0;32m347\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:26\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mGiven the available memory, 4095 threads could be allocated and 32 threads will be used in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m73\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:26\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Getting density contrast (using 32 cores and 32 arrays, parallel routine 1)...\n",
"[02:24:26\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mPerforming CiC binning...\u001b[00m\n",
"[02:24:26\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 0...\u001b[00m\n",
"[02:24:26\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1489a8000b60 for threadedDensity[30] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:26\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 30...\u001b[00m\n",
"[02:24:26\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148948000b60 for threadedDensity[31] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:26\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 31...\u001b[00m\n",
"[02:24:26\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148990000b60 for threadedDensity[21] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:26\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 21...\u001b[00m\n",
"[02:24:26\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148910000b60 for threadedDensity[23] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:26\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 23...\u001b[00m\n",
"[02:24:26\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148928000b60 for threadedDensity[20] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:26\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1488f0000b60 for threadedDensity[24] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:26\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 20...\u001b[00m\n",
"[02:24:26\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148958000b60 for threadedDensity[22] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:26\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 24...\u001b[00m\n",
"[02:24:26\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 22...\u001b[00m\n",
"[02:24:26\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1488f8000b60 for threadedDensity[19] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:26\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1488dc000b60 for threadedDensity[17] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:26\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148978000b60 for threadedDensity[26] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:26\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 17...\u001b[00m\n",
"[02:24:26\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 26...\u001b[00m\n",
"[02:24:26\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1488d8000b60 for threadedDensity[29] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:26\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 29...\u001b[00m\n",
"[02:24:26\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148988000b60 for threadedDensity[28] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:26\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 19...\u001b[00m\n",
"[02:24:26\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 28...\u001b[00m\n",
"[02:24:26\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148970000b60 for threadedDensity[7] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:26\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 7...\u001b[00m\n",
"[02:24:26\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148950000b60 for threadedDensity[9] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:26\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1488d0000b60 for threadedDensity[5] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:26\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1488e0000b60 for threadedDensity[6] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:26\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148900000b60 for threadedDensity[16] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:26\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148960000b60 for threadedDensity[13] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:26\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 16...\u001b[00m\n",
"[02:24:26\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 13...\u001b[00m\n",
"[02:24:26\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 6...\u001b[00m\n",
"[02:24:26\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1489b8000b60 for threadedDensity[4] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:26\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148938000b60 for threadedDensity[18] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:26\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148930000b60 for threadedDensity[14] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:26\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 18...\u001b[00m\n",
"[02:24:26\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 14...\u001b[00m\n",
"[02:24:26\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 5...\u001b[00m\n",
"[02:24:26\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 4...\u001b[00m\n",
"[02:24:26\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148920000b60 for threadedDensity[12] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:26\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148998000b60 for threadedDensity[25] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:26\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 12...\u001b[00m\n",
"[02:24:26\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 25...\u001b[00m\n",
"[02:24:26\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148908000b60 for threadedDensity[8] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:26\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148968000b60 for threadedDensity[10] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:26\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148918000b60 for threadedDensity[15] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:26\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 10...\u001b[00m\n",
"[02:24:26\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 15...\u001b[00m\n",
"[02:24:26\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 8...\u001b[00m\n",
"[02:24:26\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148980000b60 for threadedDensity[11] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:26\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1489a0000b60 for threadedDensity[3] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:26\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 11...\u001b[00m\n",
"[02:24:26\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 3...\u001b[00m\n",
"[02:24:26\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1489b0000b60 for threadedDensity[1] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:26\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 9...\u001b[00m\n",
"[02:24:26\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 1...\u001b[00m\n",
"[02:24:26\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148940000b60 for threadedDensity[27] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:26\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 27...\u001b[00m\n",
"[02:24:27\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1488e8000b60 for threadedDensity[2] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:27\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 2...\u001b[00m\n",
"[02:24:27\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 29 done.\u001b[00m\n",
"[02:24:27\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 6 done.\u001b[00m\n",
"[02:24:27\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 31 done.\u001b[00m\n",
"[02:24:27\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 22 done.\u001b[00m\n",
"[02:24:27\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 13 done.\u001b[00m\n",
"[02:24:27\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 16 done.\u001b[00m\n",
"[02:24:27\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 4 done.\u001b[00m\n",
"[02:24:27\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 25 done.\u001b[00m\n",
"[02:24:27\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 12 done.\u001b[00m\n",
"[02:24:27\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 15 done.\u001b[00m\n",
"[02:24:27\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 10 done.\u001b[00m\n",
"[02:24:27\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 18 done.\u001b[00m\n",
"[02:24:27\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 14 done.\u001b[00m\n",
"[02:24:27\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 23 done.\u001b[00m\n",
"[02:24:27\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 8 done.\u001b[00m\n",
"[02:24:27\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 11 done.\u001b[00m\n",
"[02:24:27\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 24 done.\u001b[00m\n",
"[02:24:27\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 3 done.\u001b[00m\n",
"[02:24:27\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 20 done.\u001b[00m\n",
"[02:24:27\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 17 done.\u001b[00m\n",
"[02:24:27\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 26 done.\u001b[00m\n",
"[02:24:27\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 0 done.\u001b[00m\n",
"[02:24:27\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 2 done.\u001b[00m\n",
"[02:24:27\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 28 done.\u001b[00m\n",
"[02:24:27\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 1 done.\u001b[00m\n",
"[02:24:27\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 21 done.\u001b[00m\n",
"[02:24:27\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 27 done.\u001b[00m\n",
"[02:24:27\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 19 done.\u001b[00m\n",
"[02:24:27\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 9 done.\u001b[00m\n",
"[02:24:27\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 30 done.\u001b[00m\n",
"[02:24:27\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 7 done.\u001b[00m\n",
"[02:24:27\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 5 done.\u001b[00m\n",
"[02:24:27\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mPerforming CiC done.\u001b[00m\n",
"[02:24:27\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mPerforming CiC reduction...\u001b[00m\n",
"[02:24:27\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x1489b0000b60 for threadedDensity[1] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:27\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x1488e8000b60 for threadedDensity[2] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:27\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x1489a0000b60 for threadedDensity[3] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:27\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x1489b8000b60 for threadedDensity[4] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:27\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x1488d0000b60 for threadedDensity[5] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:27\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x1488e0000b60 for threadedDensity[6] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:27\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148970000b60 for threadedDensity[7] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:27\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148908000b60 for threadedDensity[8] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:27\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148950000b60 for threadedDensity[9] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:27\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148968000b60 for threadedDensity[10] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:27\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148980000b60 for threadedDensity[11] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:27\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148920000b60 for threadedDensity[12] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:27\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148960000b60 for threadedDensity[13] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:27\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148930000b60 for threadedDensity[14] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:27\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148918000b60 for threadedDensity[15] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:27\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148900000b60 for threadedDensity[16] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:27\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x1488dc000b60 for threadedDensity[17] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:27\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148938000b60 for threadedDensity[18] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:27\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x1488f8000b60 for threadedDensity[19] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:27\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148928000b60 for threadedDensity[20] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:27\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148990000b60 for threadedDensity[21] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:27\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148958000b60 for threadedDensity[22] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:27\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148910000b60 for threadedDensity[23] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:27\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x1488f0000b60 for threadedDensity[24] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:27\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148998000b60 for threadedDensity[25] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:27\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148978000b60 for threadedDensity[26] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:27\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148940000b60 for threadedDensity[27] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:27\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148988000b60 for threadedDensity[28] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:27\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x1488d8000b60 for threadedDensity[29] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:27\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x1489a8000b60 for threadedDensity[30] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:27\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148948000b60 for threadedDensity[31] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:27\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mPerforming CiC reduction done.\u001b[00m\n",
"[02:24:27\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Getting density contrast (using 32 cores and 32 arrays, parallel routine 1) done.\n",
"[02:24:27\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Getting gravitational potential, periodic boundary conditions (using 32 cores)...\n",
"[02:24:27\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (1081344 bytes) at 0x55cb08d7b1a0 for AUX in \u001b[38;5;227mpoisson_solvers.c\u001b[0;36m:\u001b[38;5;192msolve_poisson_DFT\u001b[0;36m:\u001b[0;32m106\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:27\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08d7b1a0 for AUX in \u001b[38;5;227mpoisson_solvers.c\u001b[0;36m:\u001b[38;5;192msolve_poisson_DFT\u001b[0;36m:\u001b[0;32m116\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:27\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Getting gravitational potential, periodic boundary conditions (using 32 cores) done.\n",
"[02:24:27\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Acceleration loop, direction 0...\n",
"[02:24:27\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Acceleration loop, direction 0 done.\n",
"[02:24:27\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Acceleration loop, direction 1...\n",
"[02:24:27\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Acceleration loop, direction 1 done.\n",
"[02:24:27\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Acceleration loop, direction 2...\n",
"[02:24:27\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Acceleration loop, direction 2 done.\n",
"[02:24:27\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08c7b190 for g_pad in \u001b[38;5;227mdiagnostic.c\u001b[0;36m:\u001b[38;5;192mcompute_force_on_particle\u001b[0;36m:\u001b[0;32m70\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:27\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08c1b190 for xwopb in \u001b[38;5;227mdiagnostic.c\u001b[0;36m:\u001b[38;5;192mrun_force_diagnostic\u001b[0;36m:\u001b[0;32m227\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:27\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]====|Computing force for particle pair 3, bin 12: [0.505, 0.848] done. Total: 23 / max 60 pairs. Trials 22519 / max 100000000.\n",
"[02:24:27\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]====|Computing force for particle pair 1, bin 11: [0.300, 0.505]. Total: 24 / max 60 pairs...\n",
"[02:24:27\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated memory (393204 bytes) at 0x55cb08c1b190 for xwopb in \u001b[38;5;227mdiagnostic.c\u001b[0;36m:\u001b[38;5;192mrun_force_diagnostic\u001b[0;36m:\u001b[0;32m207\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:27\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated memory (1048576 bytes) at 0x55cb08c7b190 for g_pad in \u001b[38;5;227mdiagnostic.c\u001b[0;36m:\u001b[38;5;192mcompute_force_on_particle\u001b[0;36m:\u001b[0;32m32\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:27\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mdp3m0=1.000000\u001b[00m\n",
"[02:24:27\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mdp3m1=1.000000\u001b[00m\n",
"[02:24:27\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mdp3m2=1.000000\u001b[00m\n",
"[02:24:27\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mGiven the available memory, 4095 threads could be allocated and 32 threads will be used in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel\u001b[0;36m:\u001b[0;32m347\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:27\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mGiven the available memory, 4095 threads could be allocated and 32 threads will be used in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m73\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:27\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Getting density contrast (using 32 cores and 32 arrays, parallel routine 1)...\n",
"[02:24:27\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mPerforming CiC binning...\u001b[00m\n",
"[02:24:27\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 0...\u001b[00m\n",
"[02:24:27\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148990000b60 for threadedDensity[21] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:27\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148940000b60 for threadedDensity[27] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:27\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 21...\u001b[00m\n",
"[02:24:27\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 27...\u001b[00m\n",
"[02:24:27\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1488d8000b60 for threadedDensity[29] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:27\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1488e0000b60 for threadedDensity[6] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:27\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 29...\u001b[00m\n",
"[02:24:27\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 6...\u001b[00m\n",
"[02:24:27\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148910000b60 for threadedDensity[23] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:27\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148900000b60 for threadedDensity[16] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:27\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 23...\u001b[00m\n",
"[02:24:27\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148960000b60 for threadedDensity[13] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:27\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148908000b60 for threadedDensity[8] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:27\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 13...\u001b[00m\n",
"[02:24:27\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 8...\u001b[00m\n",
"[02:24:27\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 16...\u001b[00m\n",
"[02:24:27\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1488dc000b60 for threadedDensity[17] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:27\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148978000b60 for threadedDensity[26] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:27\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 17...\u001b[00m\n",
"[02:24:27\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 26...\u001b[00m\n",
"[02:24:27\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1488f0000b60 for threadedDensity[24] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:27\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148980000b60 for threadedDensity[11] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:27\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 24...\u001b[00m\n",
"[02:24:27\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 11...\u001b[00m\n",
"[02:24:27\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1489b8000b60 for threadedDensity[4] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:27\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1489a0000b60 for threadedDensity[3] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:27\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148928000b60 for threadedDensity[20] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:27\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 3...\u001b[00m\n",
"[02:24:27\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 20...\u001b[00m\n",
"[02:24:27\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148958000b60 for threadedDensity[22] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:27\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148918000b60 for threadedDensity[15] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:27\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148968000b60 for threadedDensity[10] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:27\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 15...\u001b[00m\n",
"[02:24:27\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 10...\u001b[00m\n",
"[02:24:27\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 22...\u001b[00m\n",
"[02:24:27\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148998000b60 for threadedDensity[25] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:27\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148920000b60 for threadedDensity[12] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:27\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 25...\u001b[00m\n",
"[02:24:27\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 12...\u001b[00m\n",
"[02:24:27\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148938000b60 for threadedDensity[18] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:27\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148930000b60 for threadedDensity[14] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:27\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 18...\u001b[00m\n",
"[02:24:27\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 14...\u001b[00m\n",
"[02:24:27\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 4...\u001b[00m\n",
"[02:24:27\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1489b0000b60 for threadedDensity[1] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:27\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1488d0000b60 for threadedDensity[5] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:27\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 1...\u001b[00m\n",
"[02:24:27\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 5...\u001b[00m\n",
"[02:24:27\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1489a8000b60 for threadedDensity[30] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:27\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148970000b60 for threadedDensity[7] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:27\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 30...\u001b[00m\n",
"[02:24:27\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 7...\u001b[00m\n",
"[02:24:27\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1488f8000b60 for threadedDensity[19] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:27\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148950000b60 for threadedDensity[9] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:27\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 19...\u001b[00m\n",
"[02:24:27\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 9...\u001b[00m\n",
"[02:24:27\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148948000b60 for threadedDensity[31] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:27\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 31...\u001b[00m\n",
"[02:24:27\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1488e8000b60 for threadedDensity[2] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:27\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 2...\u001b[00m\n",
"[02:24:27\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148988000b60 for threadedDensity[28] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:27\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 28...\u001b[00m\n",
"[02:24:27\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 18 done.\u001b[00m\n",
"[02:24:27\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 14 done.\u001b[00m\n",
"[02:24:27\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 29 done.\u001b[00m\n",
"[02:24:27\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 6 done.\u001b[00m\n",
"[02:24:27\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 31 done.\u001b[00m\n",
"[02:24:27\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 22 done.\u001b[00m\n",
"[02:24:27\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 16 done.\u001b[00m\n",
"[02:24:27\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 13 done.\u001b[00m\n",
"[02:24:27\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 25 done.\u001b[00m\n",
"[02:24:27\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 12 done.\u001b[00m\n",
"[02:24:27\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 10 done.\u001b[00m\n",
"[02:24:27\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 15 done.\u001b[00m\n",
"[02:24:27\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 2 done.\u001b[00m\n",
"[02:24:27\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 23 done.\u001b[00m\n",
"[02:24:27\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 11 done.\u001b[00m\n",
"[02:24:27\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 24 done.\u001b[00m\n",
"[02:24:27\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 3 done.\u001b[00m\n",
"[02:24:27\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 20 done.\u001b[00m\n",
"[02:24:27\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 4 done.\u001b[00m\n",
"[02:24:27\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 0 done.\u001b[00m\n",
"[02:24:27\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 28 done.\u001b[00m\n",
"[02:24:27\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 5 done.\u001b[00m\n",
"[02:24:27\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 21 done.\u001b[00m\n",
"[02:24:27\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 27 done.\u001b[00m\n",
"[02:24:27\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 26 done.\u001b[00m\n",
"[02:24:27\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 17 done.\u001b[00m\n",
"[02:24:27\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 30 done.\u001b[00m\n",
"[02:24:27\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 7 done.\u001b[00m\n",
"[02:24:27\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 19 done.\u001b[00m\n",
"[02:24:27\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 9 done.\u001b[00m\n",
"[02:24:27\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 8 done.\u001b[00m\n",
"[02:24:27\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 1 done.\u001b[00m\n",
"[02:24:27\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mPerforming CiC done.\u001b[00m\n",
"[02:24:27\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mPerforming CiC reduction...\u001b[00m\n",
"[02:24:27\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x1489b0000b60 for threadedDensity[1] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:27\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x1488e8000b60 for threadedDensity[2] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:27\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x1489a0000b60 for threadedDensity[3] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:27\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x1489b8000b60 for threadedDensity[4] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:27\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x1488d0000b60 for threadedDensity[5] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:27\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x1488e0000b60 for threadedDensity[6] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:27\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148970000b60 for threadedDensity[7] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:27\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148908000b60 for threadedDensity[8] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:27\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148950000b60 for threadedDensity[9] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:27\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148968000b60 for threadedDensity[10] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:27\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148980000b60 for threadedDensity[11] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:27\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148920000b60 for threadedDensity[12] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:27\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148960000b60 for threadedDensity[13] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:27\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148930000b60 for threadedDensity[14] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:27\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148918000b60 for threadedDensity[15] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:27\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148900000b60 for threadedDensity[16] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:27\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x1488dc000b60 for threadedDensity[17] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:27\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148938000b60 for threadedDensity[18] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:27\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x1488f8000b60 for threadedDensity[19] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:27\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148928000b60 for threadedDensity[20] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:27\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148990000b60 for threadedDensity[21] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:27\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148958000b60 for threadedDensity[22] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:27\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148910000b60 for threadedDensity[23] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:27\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x1488f0000b60 for threadedDensity[24] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:27\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148998000b60 for threadedDensity[25] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:27\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148978000b60 for threadedDensity[26] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:27\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148940000b60 for threadedDensity[27] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:27\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148988000b60 for threadedDensity[28] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:27\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x1488d8000b60 for threadedDensity[29] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:27\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x1489a8000b60 for threadedDensity[30] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:27\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148948000b60 for threadedDensity[31] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:27\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mPerforming CiC reduction done.\u001b[00m\n",
"[02:24:27\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Getting density contrast (using 32 cores and 32 arrays, parallel routine 1) done.\n",
"[02:24:27\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Getting gravitational potential, periodic boundary conditions (using 32 cores)...\n",
"[02:24:27\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (1081344 bytes) at 0x55cb08d7b1a0 for AUX in \u001b[38;5;227mpoisson_solvers.c\u001b[0;36m:\u001b[38;5;192msolve_poisson_DFT\u001b[0;36m:\u001b[0;32m106\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:27\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08d7b1a0 for AUX in \u001b[38;5;227mpoisson_solvers.c\u001b[0;36m:\u001b[38;5;192msolve_poisson_DFT\u001b[0;36m:\u001b[0;32m116\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:27\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Getting gravitational potential, periodic boundary conditions (using 32 cores) done.\n",
"[02:24:27\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Acceleration loop, direction 0...\n",
"[02:24:27\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Acceleration loop, direction 0 done.\n",
"[02:24:27\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Acceleration loop, direction 1...\n",
"[02:24:27\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Acceleration loop, direction 1 done.\n",
"[02:24:27\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Acceleration loop, direction 2...\n",
"[02:24:27\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Acceleration loop, direction 2 done.\n",
"[02:24:27\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08c7b190 for g_pad in \u001b[38;5;227mdiagnostic.c\u001b[0;36m:\u001b[38;5;192mcompute_force_on_particle\u001b[0;36m:\u001b[0;32m70\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:27\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08c1b190 for xwopb in \u001b[38;5;227mdiagnostic.c\u001b[0;36m:\u001b[38;5;192mrun_force_diagnostic\u001b[0;36m:\u001b[0;32m227\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:27\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]====|Computing force for particle pair 1, bin 11: [0.300, 0.505] done. Total: 24 / max 60 pairs. Trials 31679 / max 100000000.\n",
"[02:24:27\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]====|Computing force for particle pair 2, bin 11: [0.300, 0.505]. Total: 25 / max 60 pairs...\n",
"[02:24:27\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated memory (393204 bytes) at 0x55cb08c1b190 for xwopb in \u001b[38;5;227mdiagnostic.c\u001b[0;36m:\u001b[38;5;192mrun_force_diagnostic\u001b[0;36m:\u001b[0;32m207\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:27\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated memory (1048576 bytes) at 0x55cb08c7b190 for g_pad in \u001b[38;5;227mdiagnostic.c\u001b[0;36m:\u001b[38;5;192mcompute_force_on_particle\u001b[0;36m:\u001b[0;32m32\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:27\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mdp3m0=1.000000\u001b[00m\n",
"[02:24:27\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mdp3m1=1.000000\u001b[00m\n",
"[02:24:27\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mdp3m2=1.000000\u001b[00m\n",
"[02:24:27\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mGiven the available memory, 4095 threads could be allocated and 32 threads will be used in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel\u001b[0;36m:\u001b[0;32m347\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:27\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mGiven the available memory, 4095 threads could be allocated and 32 threads will be used in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m73\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:27\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Getting density contrast (using 32 cores and 32 arrays, parallel routine 1)...\n",
"[02:24:27\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mPerforming CiC binning...\u001b[00m\n",
"[02:24:27\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 0...\u001b[00m\n",
"[02:24:27\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1488e0000b60 for threadedDensity[6] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:27\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148970000b60 for threadedDensity[7] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:27\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 6...\u001b[00m\n",
"[02:24:27\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148900000b60 for threadedDensity[16] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:27\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1488d8000b60 for threadedDensity[29] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:27\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148960000b60 for threadedDensity[13] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:27\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148908000b60 for threadedDensity[8] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:27\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 13...\u001b[00m\n",
"[02:24:27\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 8...\u001b[00m\n",
"[02:24:27\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 29...\u001b[00m\n",
"[02:24:27\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 16...\u001b[00m\n",
"[02:24:27\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148910000b60 for threadedDensity[23] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:27\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148928000b60 for threadedDensity[20] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:27\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 23...\u001b[00m\n",
"[02:24:27\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148980000b60 for threadedDensity[11] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:27\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1489a0000b60 for threadedDensity[3] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:27\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 20...\u001b[00m\n",
"[02:24:27\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 3...\u001b[00m\n",
"[02:24:27\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1489b0000b60 for threadedDensity[1] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:27\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1488e8000b60 for threadedDensity[2] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:27\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 1...\u001b[00m\n",
"[02:24:27\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 2...\u001b[00m\n",
"[02:24:27\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148968000b60 for threadedDensity[10] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:27\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148920000b60 for threadedDensity[12] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:27\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 12...\u001b[00m\n",
"[02:24:27\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148930000b60 for threadedDensity[14] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:27\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148918000b60 for threadedDensity[15] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:27\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 10...\u001b[00m\n",
"[02:24:27\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 15...\u001b[00m\n",
"[02:24:27\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 14...\u001b[00m\n",
"[02:24:27\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1488f0000b60 for threadedDensity[24] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:27\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 11...\u001b[00m\n",
"[02:24:27\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 24...\u001b[00m\n",
"[02:24:27\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148958000b60 for threadedDensity[22] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:27\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148938000b60 for threadedDensity[18] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:27\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 22...\u001b[00m\n",
"[02:24:27\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148998000b60 for threadedDensity[25] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:27\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 18...\u001b[00m\n",
"[02:24:27\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 25...\u001b[00m\n",
"[02:24:27\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1489b8000b60 for threadedDensity[4] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:27\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148990000b60 for threadedDensity[21] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:27\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148940000b60 for threadedDensity[27] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:27\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 21...\u001b[00m\n",
"[02:24:27\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 27...\u001b[00m\n",
"[02:24:27\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1488d0000b60 for threadedDensity[5] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:27\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148988000b60 for threadedDensity[28] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:27\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 5...\u001b[00m\n",
"[02:24:27\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 28...\u001b[00m\n",
"[02:24:27\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148978000b60 for threadedDensity[26] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:27\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1488dc000b60 for threadedDensity[17] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:27\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 26...\u001b[00m\n",
"[02:24:27\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 17...\u001b[00m\n",
"[02:24:27\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 4...\u001b[00m\n",
"[02:24:27\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148950000b60 for threadedDensity[9] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:27\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1488f8000b60 for threadedDensity[19] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:27\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 19...\u001b[00m\n",
"[02:24:27\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 9...\u001b[00m\n",
"[02:24:27\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1489a8000b60 for threadedDensity[30] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:27\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 7...\u001b[00m\n",
"[02:24:27\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 30...\u001b[00m\n",
"[02:24:27\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148948000b60 for threadedDensity[31] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:27\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 31...\u001b[00m\n",
"[02:24:27\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 22 done.\u001b[00m\n",
"[02:24:27\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 31 done.\u001b[00m\n",
"[02:24:27\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 8 done.\u001b[00m\n",
"[02:24:27\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 13 done.\u001b[00m\n",
"[02:24:27\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 29 done.\u001b[00m\n",
"[02:24:27\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 6 done.\u001b[00m\n",
"[02:24:27\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 1 done.\u001b[00m\n",
"[02:24:27\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 16 done.\u001b[00m\n",
"[02:24:27\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 14 done.\u001b[00m\n",
"[02:24:27\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 18 done.\u001b[00m\n",
"[02:24:27\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 25 done.\u001b[00m\n",
"[02:24:27\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 12 done.\u001b[00m\n",
"[02:24:27\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 15 done.\u001b[00m\n",
"[02:24:27\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 10 done.\u001b[00m\n",
"[02:24:27\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 2 done.\u001b[00m\n",
"[02:24:27\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 23 done.\u001b[00m\n",
"[02:24:27\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 20 done.\u001b[00m\n",
"[02:24:27\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 3 done.\u001b[00m\n",
"[02:24:27\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 24 done.\u001b[00m\n",
"[02:24:27\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 11 done.\u001b[00m\n",
"[02:24:27\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 4 done.\u001b[00m\n",
"[02:24:27\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 0 done.\u001b[00m\n",
"[02:24:27\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 21 done.\u001b[00m\n",
"[02:24:27\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 27 done.\u001b[00m\n",
"[02:24:27\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 5 done.\u001b[00m\n",
"[02:24:27\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 28 done.\u001b[00m\n",
"[02:24:27\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 17 done.\u001b[00m\n",
"[02:24:27\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 26 done.\u001b[00m\n",
"[02:24:27\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 19 done.\u001b[00m\n",
"[02:24:27\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 9 done.\u001b[00m\n",
"[02:24:27\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 30 done.\u001b[00m\n",
"[02:24:27\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 7 done.\u001b[00m\n",
"[02:24:27\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mPerforming CiC done.\u001b[00m\n",
"[02:24:27\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mPerforming CiC reduction...\u001b[00m\n",
"[02:24:27\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x1489b0000b60 for threadedDensity[1] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:27\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x1488e8000b60 for threadedDensity[2] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:27\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x1489a0000b60 for threadedDensity[3] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:27\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x1489b8000b60 for threadedDensity[4] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:27\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x1488d0000b60 for threadedDensity[5] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:27\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x1488e0000b60 for threadedDensity[6] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:27\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148970000b60 for threadedDensity[7] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:27\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148908000b60 for threadedDensity[8] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:27\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148950000b60 for threadedDensity[9] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:27\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148968000b60 for threadedDensity[10] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:27\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148980000b60 for threadedDensity[11] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:27\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148920000b60 for threadedDensity[12] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:27\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148960000b60 for threadedDensity[13] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:27\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148930000b60 for threadedDensity[14] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:27\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148918000b60 for threadedDensity[15] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:27\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148900000b60 for threadedDensity[16] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:27\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x1488dc000b60 for threadedDensity[17] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:27\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148938000b60 for threadedDensity[18] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:27\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x1488f8000b60 for threadedDensity[19] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:27\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148928000b60 for threadedDensity[20] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:27\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148990000b60 for threadedDensity[21] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:27\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148958000b60 for threadedDensity[22] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:27\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148910000b60 for threadedDensity[23] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:27\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x1488f0000b60 for threadedDensity[24] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:27\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148998000b60 for threadedDensity[25] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:27\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148978000b60 for threadedDensity[26] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:27\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148940000b60 for threadedDensity[27] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:27\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148988000b60 for threadedDensity[28] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:27\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x1488d8000b60 for threadedDensity[29] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:27\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x1489a8000b60 for threadedDensity[30] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:27\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148948000b60 for threadedDensity[31] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:27\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mPerforming CiC reduction done.\u001b[00m\n",
"[02:24:27\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Getting density contrast (using 32 cores and 32 arrays, parallel routine 1) done.\n",
"[02:24:27\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Getting gravitational potential, periodic boundary conditions (using 32 cores)...\n",
"[02:24:27\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (1081344 bytes) at 0x55cb08d7b1a0 for AUX in \u001b[38;5;227mpoisson_solvers.c\u001b[0;36m:\u001b[38;5;192msolve_poisson_DFT\u001b[0;36m:\u001b[0;32m106\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:27\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08d7b1a0 for AUX in \u001b[38;5;227mpoisson_solvers.c\u001b[0;36m:\u001b[38;5;192msolve_poisson_DFT\u001b[0;36m:\u001b[0;32m116\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:27\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Getting gravitational potential, periodic boundary conditions (using 32 cores) done.\n",
"[02:24:27\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Acceleration loop, direction 0...\n",
"[02:24:27\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Acceleration loop, direction 0 done.\n",
"[02:24:27\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Acceleration loop, direction 1...\n",
"[02:24:27\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Acceleration loop, direction 1 done.\n",
"[02:24:27\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Acceleration loop, direction 2...\n",
"[02:24:27\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Acceleration loop, direction 2 done.\n",
"[02:24:27\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08c7b190 for g_pad in \u001b[38;5;227mdiagnostic.c\u001b[0;36m:\u001b[38;5;192mcompute_force_on_particle\u001b[0;36m:\u001b[0;32m70\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:27\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08c1b190 for xwopb in \u001b[38;5;227mdiagnostic.c\u001b[0;36m:\u001b[38;5;192mrun_force_diagnostic\u001b[0;36m:\u001b[0;32m227\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:27\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]====|Computing force for particle pair 2, bin 11: [0.300, 0.505] done. Total: 25 / max 60 pairs. Trials 38127 / max 100000000.\n",
"[02:24:27\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]====|Computing force for particle pair 3, bin 13: [0.848, 1.424]. Total: 26 / max 60 pairs...\n",
"[02:24:27\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated memory (393204 bytes) at 0x55cb08c1b190 for xwopb in \u001b[38;5;227mdiagnostic.c\u001b[0;36m:\u001b[38;5;192mrun_force_diagnostic\u001b[0;36m:\u001b[0;32m207\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:27\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated memory (1048576 bytes) at 0x55cb08c7b190 for g_pad in \u001b[38;5;227mdiagnostic.c\u001b[0;36m:\u001b[38;5;192mcompute_force_on_particle\u001b[0;36m:\u001b[0;32m32\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:27\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mdp3m0=1.000000\u001b[00m\n",
"[02:24:27\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mdp3m1=1.000000\u001b[00m\n",
"[02:24:27\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mdp3m2=1.000000\u001b[00m\n",
"[02:24:27\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mGiven the available memory, 4095 threads could be allocated and 32 threads will be used in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel\u001b[0;36m:\u001b[0;32m347\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:27\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mGiven the available memory, 4095 threads could be allocated and 32 threads will be used in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m73\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:27\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Getting density contrast (using 32 cores and 32 arrays, parallel routine 1)...\n",
"[02:24:27\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mPerforming CiC binning...\u001b[00m\n",
"[02:24:27\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 0...\u001b[00m\n",
"[02:24:27\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148960000b60 for threadedDensity[13] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:27\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148950000b60 for threadedDensity[9] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:27\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 9...\u001b[00m\n",
"[02:24:27\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1488f8000b60 for threadedDensity[19] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:27\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 19...\u001b[00m\n",
"[02:24:27\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1488e0000b60 for threadedDensity[6] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:27\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1488d8000b60 for threadedDensity[29] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:27\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 6...\u001b[00m\n",
"[02:24:27\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 29...\u001b[00m\n",
"[02:24:27\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 13...\u001b[00m\n",
"[02:24:27\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148910000b60 for threadedDensity[23] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:27\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148900000b60 for threadedDensity[16] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:27\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 23...\u001b[00m\n",
"[02:24:27\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 16...\u001b[00m\n",
"[02:24:27\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1489b8000b60 for threadedDensity[4] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:27\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 4...\u001b[00m\n",
"[02:24:27\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148980000b60 for threadedDensity[11] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:27\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1489b0000b60 for threadedDensity[1] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:27\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1488e8000b60 for threadedDensity[2] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:27\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 1...\u001b[00m\n",
"[02:24:27\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 2...\u001b[00m\n",
"[02:24:27\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148968000b60 for threadedDensity[10] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:27\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1488f0000b60 for threadedDensity[24] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:27\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 11...\u001b[00m\n",
"[02:24:27\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 24...\u001b[00m\n",
"[02:24:27\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 10...\u001b[00m\n",
"[02:24:27\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1489a0000b60 for threadedDensity[3] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:27\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148928000b60 for threadedDensity[20] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:27\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 3...\u001b[00m\n",
"[02:24:27\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 20...\u001b[00m\n",
"[02:24:27\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148920000b60 for threadedDensity[12] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:27\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148918000b60 for threadedDensity[15] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:27\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148930000b60 for threadedDensity[14] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:27\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148938000b60 for threadedDensity[18] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:27\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 14...\u001b[00m\n",
"[02:24:27\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 18...\u001b[00m\n",
"[02:24:27\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 12...\u001b[00m\n",
"[02:24:27\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148998000b60 for threadedDensity[25] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:27\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 15...\u001b[00m\n",
"[02:24:27\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 25...\u001b[00m\n",
"[02:24:27\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148988000b60 for threadedDensity[28] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:27\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1488d0000b60 for threadedDensity[5] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:27\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 28...\u001b[00m\n",
"[02:24:27\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 5...\u001b[00m\n",
"[02:24:27\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1488dc000b60 for threadedDensity[17] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:27\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148978000b60 for threadedDensity[26] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:27\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 26...\u001b[00m\n",
"[02:24:27\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 17...\u001b[00m\n",
"[02:24:27\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148990000b60 for threadedDensity[21] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:27\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148940000b60 for threadedDensity[27] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:27\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 21...\u001b[00m\n",
"[02:24:27\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 27...\u001b[00m\n",
"[02:24:27\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148970000b60 for threadedDensity[7] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:27\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1489a8000b60 for threadedDensity[30] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:27\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 7...\u001b[00m\n",
"[02:24:27\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 30...\u001b[00m\n",
"[02:24:27\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148908000b60 for threadedDensity[8] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:27\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 8...\u001b[00m\n",
"[02:24:27\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148948000b60 for threadedDensity[31] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:27\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 31...\u001b[00m\n",
"[02:24:27\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148958000b60 for threadedDensity[22] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:27\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 22...\u001b[00m\n",
"[02:24:27\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 31 done.\u001b[00m\n",
"[02:24:27\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 22 done.\u001b[00m\n",
"[02:24:27\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 29 done.\u001b[00m\n",
"[02:24:27\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 6 done.\u001b[00m\n",
"[02:24:27\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 16 done.\u001b[00m\n",
"[02:24:27\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 1 done.\u001b[00m\n",
"[02:24:27\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 8 done.\u001b[00m\n",
"[02:24:27\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 13 done.\u001b[00m\n",
"[02:24:27\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 14 done.\u001b[00m\n",
"[02:24:27\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 18 done.\u001b[00m\n",
"[02:24:27\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 12 done.\u001b[00m\n",
"[02:24:27\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 25 done.\u001b[00m\n",
"[02:24:27\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 10 done.\u001b[00m\n",
"[02:24:27\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 15 done.\u001b[00m\n",
"[02:24:27\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 23 done.\u001b[00m\n",
"[02:24:27\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 2 done.\u001b[00m\n",
"[02:24:27\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 24 done.\u001b[00m\n",
"[02:24:27\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 11 done.\u001b[00m\n",
"[02:24:27\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 3 done.\u001b[00m\n",
"[02:24:27\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 20 done.\u001b[00m\n",
"[02:24:27\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 26 done.\u001b[00m\n",
"[02:24:27\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 17 done.\u001b[00m\n",
"[02:24:27\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 21 done.\u001b[00m\n",
"[02:24:27\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 27 done.\u001b[00m\n",
"[02:24:27\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 28 done.\u001b[00m\n",
"[02:24:27\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 5 done.\u001b[00m\n",
"[02:24:27\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 4 done.\u001b[00m\n",
"[02:24:27\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 19 done.\u001b[00m\n",
"[02:24:27\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 9 done.\u001b[00m\n",
"[02:24:27\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 30 done.\u001b[00m\n",
"[02:24:27\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 7 done.\u001b[00m\n",
"[02:24:27\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 0 done.\u001b[00m\n",
"[02:24:27\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mPerforming CiC done.\u001b[00m\n",
"[02:24:27\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mPerforming CiC reduction...\u001b[00m\n",
"[02:24:27\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x1489b0000b60 for threadedDensity[1] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:27\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x1488e8000b60 for threadedDensity[2] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:27\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x1489a0000b60 for threadedDensity[3] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:27\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x1489b8000b60 for threadedDensity[4] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:27\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x1488d0000b60 for threadedDensity[5] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:27\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x1488e0000b60 for threadedDensity[6] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:27\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148970000b60 for threadedDensity[7] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:27\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148908000b60 for threadedDensity[8] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:27\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148950000b60 for threadedDensity[9] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:27\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148968000b60 for threadedDensity[10] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:27\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148980000b60 for threadedDensity[11] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:27\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148920000b60 for threadedDensity[12] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:27\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148960000b60 for threadedDensity[13] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:27\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148930000b60 for threadedDensity[14] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:27\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148918000b60 for threadedDensity[15] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:27\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148900000b60 for threadedDensity[16] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:27\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x1488dc000b60 for threadedDensity[17] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:27\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148938000b60 for threadedDensity[18] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:28\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x1488f8000b60 for threadedDensity[19] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:28\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148928000b60 for threadedDensity[20] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:28\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148990000b60 for threadedDensity[21] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:28\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148958000b60 for threadedDensity[22] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:28\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148910000b60 for threadedDensity[23] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:28\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x1488f0000b60 for threadedDensity[24] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:28\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148998000b60 for threadedDensity[25] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:28\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148978000b60 for threadedDensity[26] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:28\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148940000b60 for threadedDensity[27] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:28\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148988000b60 for threadedDensity[28] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:28\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x1488d8000b60 for threadedDensity[29] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:28\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x1489a8000b60 for threadedDensity[30] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:28\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148948000b60 for threadedDensity[31] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:28\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mPerforming CiC reduction done.\u001b[00m\n",
"[02:24:28\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Getting density contrast (using 32 cores and 32 arrays, parallel routine 1) done.\n",
"[02:24:28\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Getting gravitational potential, periodic boundary conditions (using 32 cores)...\n",
"[02:24:28\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (1081344 bytes) at 0x55cb08d7b1a0 for AUX in \u001b[38;5;227mpoisson_solvers.c\u001b[0;36m:\u001b[38;5;192msolve_poisson_DFT\u001b[0;36m:\u001b[0;32m106\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:28\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08d7b1a0 for AUX in \u001b[38;5;227mpoisson_solvers.c\u001b[0;36m:\u001b[38;5;192msolve_poisson_DFT\u001b[0;36m:\u001b[0;32m116\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:28\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Getting gravitational potential, periodic boundary conditions (using 32 cores) done.\n",
"[02:24:28\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Acceleration loop, direction 0...\n",
"[02:24:28\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Acceleration loop, direction 0 done.\n",
"[02:24:28\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Acceleration loop, direction 1...\n",
"[02:24:28\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Acceleration loop, direction 1 done.\n",
"[02:24:28\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Acceleration loop, direction 2...\n",
"[02:24:28\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Acceleration loop, direction 2 done.\n",
"[02:24:28\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08c7b190 for g_pad in \u001b[38;5;227mdiagnostic.c\u001b[0;36m:\u001b[38;5;192mcompute_force_on_particle\u001b[0;36m:\u001b[0;32m70\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:28\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08c1b190 for xwopb in \u001b[38;5;227mdiagnostic.c\u001b[0;36m:\u001b[38;5;192mrun_force_diagnostic\u001b[0;36m:\u001b[0;32m227\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:28\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]====|Computing force for particle pair 3, bin 13: [0.848, 1.424] done. Total: 26 / max 60 pairs. Trials 44198 / max 100000000.\n",
"[02:24:28\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]====|Computing force for particle pair 3, bin 11: [0.300, 0.505]. Total: 27 / max 60 pairs...\n",
"[02:24:28\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated memory (393204 bytes) at 0x55cb08c1b190 for xwopb in \u001b[38;5;227mdiagnostic.c\u001b[0;36m:\u001b[38;5;192mrun_force_diagnostic\u001b[0;36m:\u001b[0;32m207\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:28\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated memory (1048576 bytes) at 0x55cb08c7b190 for g_pad in \u001b[38;5;227mdiagnostic.c\u001b[0;36m:\u001b[38;5;192mcompute_force_on_particle\u001b[0;36m:\u001b[0;32m32\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:28\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mdp3m0=1.000000\u001b[00m\n",
"[02:24:28\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mdp3m1=1.000000\u001b[00m\n",
"[02:24:28\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mdp3m2=1.000000\u001b[00m\n",
"[02:24:28\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mGiven the available memory, 4095 threads could be allocated and 32 threads will be used in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel\u001b[0;36m:\u001b[0;32m347\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:28\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mGiven the available memory, 4095 threads could be allocated and 32 threads will be used in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m73\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:28\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Getting density contrast (using 32 cores and 32 arrays, parallel routine 1)...\n",
"[02:24:28\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mPerforming CiC binning...\u001b[00m\n",
"[02:24:28\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 0...\u001b[00m\n",
"[02:24:28\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148908000b60 for threadedDensity[8] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:28\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148960000b60 for threadedDensity[13] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:28\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 8...\u001b[00m\n",
"[02:24:28\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 13...\u001b[00m\n",
"[02:24:28\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1488e0000b60 for threadedDensity[6] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:28\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1488d8000b60 for threadedDensity[29] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:28\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 6...\u001b[00m\n",
"[02:24:28\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 29...\u001b[00m\n",
"[02:24:28\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148900000b60 for threadedDensity[16] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:28\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148988000b60 for threadedDensity[28] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:28\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1488d0000b60 for threadedDensity[5] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:28\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 28...\u001b[00m\n",
"[02:24:28\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 5...\u001b[00m\n",
"[02:24:28\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 16...\u001b[00m\n",
"[02:24:28\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148910000b60 for threadedDensity[23] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:28\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148978000b60 for threadedDensity[26] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:28\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1488dc000b60 for threadedDensity[17] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:28\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 26...\u001b[00m\n",
"[02:24:28\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 17...\u001b[00m\n",
"[02:24:28\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 23...\u001b[00m\n",
"[02:24:28\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1488e8000b60 for threadedDensity[2] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:28\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1489b0000b60 for threadedDensity[1] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:28\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1489b8000b60 for threadedDensity[4] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:28\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 1...\u001b[00m\n",
"[02:24:28\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 4...\u001b[00m\n",
"[02:24:28\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148968000b60 for threadedDensity[10] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:28\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148958000b60 for threadedDensity[22] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:28\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 10...\u001b[00m\n",
"[02:24:28\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148918000b60 for threadedDensity[15] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:28\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 22...\u001b[00m\n",
"[02:24:28\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 2...\u001b[00m\n",
"[02:24:28\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148930000b60 for threadedDensity[14] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:28\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148938000b60 for threadedDensity[18] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:28\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 14...\u001b[00m\n",
"[02:24:28\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 18...\u001b[00m\n",
"[02:24:28\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 15...\u001b[00m\n",
"[02:24:28\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148998000b60 for threadedDensity[25] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:28\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1489a0000b60 for threadedDensity[3] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:28\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148928000b60 for threadedDensity[20] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:28\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 3...\u001b[00m\n",
"[02:24:28\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 20...\u001b[00m\n",
"[02:24:28\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148920000b60 for threadedDensity[12] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:28\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 25...\u001b[00m\n",
"[02:24:28\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 12...\u001b[00m\n",
"[02:24:28\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148980000b60 for threadedDensity[11] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:28\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1488f0000b60 for threadedDensity[24] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:28\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 11...\u001b[00m\n",
"[02:24:28\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 24...\u001b[00m\n",
"[02:24:28\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148940000b60 for threadedDensity[27] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:28\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148990000b60 for threadedDensity[21] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:28\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 27...\u001b[00m\n",
"[02:24:28\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 21...\u001b[00m\n",
"[02:24:28\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1489a8000b60 for threadedDensity[30] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:28\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148970000b60 for threadedDensity[7] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:28\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 30...\u001b[00m\n",
"[02:24:28\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 7...\u001b[00m\n",
"[02:24:28\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1488f8000b60 for threadedDensity[19] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:28\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148950000b60 for threadedDensity[9] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:28\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 19...\u001b[00m\n",
"[02:24:28\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 9...\u001b[00m\n",
"[02:24:28\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148948000b60 for threadedDensity[31] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:28\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 31...\u001b[00m\n",
"[02:24:28\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 12 done.\u001b[00m\n",
"[02:24:28\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 25 done.\u001b[00m\n",
"[02:24:28\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 31 done.\u001b[00m\n",
"[02:24:28\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 22 done.\u001b[00m\n",
"[02:24:28\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 29 done.\u001b[00m\n",
"[02:24:28\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 6 done.\u001b[00m\n",
"[02:24:28\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 0 done.\u001b[00m\n",
"[02:24:28\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 16 done.\u001b[00m\n",
"[02:24:28\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 8 done.\u001b[00m\n",
"[02:24:28\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 13 done.\u001b[00m\n",
"[02:24:28\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 10 done.\u001b[00m\n",
"[02:24:28\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 15 done.\u001b[00m\n",
"[02:24:28\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 14 done.\u001b[00m\n",
"[02:24:28\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 18 done.\u001b[00m\n",
"[02:24:28\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 23 done.\u001b[00m\n",
"[02:24:28\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 2 done.\u001b[00m\n",
"[02:24:28\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 3 done.\u001b[00m\n",
"[02:24:28\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 20 done.\u001b[00m\n",
"[02:24:28\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 24 done.\u001b[00m\n",
"[02:24:28\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 11 done.\u001b[00m\n",
"[02:24:28\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 21 done.\u001b[00m\n",
"[02:24:28\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 27 done.\u001b[00m\n",
"[02:24:28\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 4 done.\u001b[00m\n",
"[02:24:28\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 1 done.\u001b[00m\n",
"[02:24:28\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 28 done.\u001b[00m\n",
"[02:24:28\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 5 done.\u001b[00m\n",
"[02:24:28\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 26 done.\u001b[00m\n",
"[02:24:28\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 17 done.\u001b[00m\n",
"[02:24:28\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 19 done.\u001b[00m\n",
"[02:24:28\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 9 done.\u001b[00m\n",
"[02:24:28\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 7 done.\u001b[00m\n",
"[02:24:28\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 30 done.\u001b[00m\n",
"[02:24:28\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mPerforming CiC done.\u001b[00m\n",
"[02:24:28\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mPerforming CiC reduction...\u001b[00m\n",
"[02:24:28\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x1489b0000b60 for threadedDensity[1] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:28\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x1488e8000b60 for threadedDensity[2] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:28\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x1489a0000b60 for threadedDensity[3] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:28\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x1489b8000b60 for threadedDensity[4] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:28\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x1488d0000b60 for threadedDensity[5] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:28\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x1488e0000b60 for threadedDensity[6] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:28\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148970000b60 for threadedDensity[7] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:28\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148908000b60 for threadedDensity[8] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:28\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148950000b60 for threadedDensity[9] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:28\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148968000b60 for threadedDensity[10] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:28\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148980000b60 for threadedDensity[11] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:28\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148920000b60 for threadedDensity[12] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:28\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148960000b60 for threadedDensity[13] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:28\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148930000b60 for threadedDensity[14] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:28\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148918000b60 for threadedDensity[15] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:28\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148900000b60 for threadedDensity[16] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:28\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x1488dc000b60 for threadedDensity[17] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:28\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148938000b60 for threadedDensity[18] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:28\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x1488f8000b60 for threadedDensity[19] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:28\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148928000b60 for threadedDensity[20] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:28\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148990000b60 for threadedDensity[21] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:28\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148958000b60 for threadedDensity[22] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:28\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148910000b60 for threadedDensity[23] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:28\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x1488f0000b60 for threadedDensity[24] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:28\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148998000b60 for threadedDensity[25] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:28\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148978000b60 for threadedDensity[26] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:28\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148940000b60 for threadedDensity[27] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:28\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148988000b60 for threadedDensity[28] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:28\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x1488d8000b60 for threadedDensity[29] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:28\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x1489a8000b60 for threadedDensity[30] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:28\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148948000b60 for threadedDensity[31] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:28\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mPerforming CiC reduction done.\u001b[00m\n",
"[02:24:28\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Getting density contrast (using 32 cores and 32 arrays, parallel routine 1) done.\n",
"[02:24:28\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Getting gravitational potential, periodic boundary conditions (using 32 cores)...\n",
"[02:24:28\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (1081344 bytes) at 0x55cb08d7b1a0 for AUX in \u001b[38;5;227mpoisson_solvers.c\u001b[0;36m:\u001b[38;5;192msolve_poisson_DFT\u001b[0;36m:\u001b[0;32m106\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:28\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08d7b1a0 for AUX in \u001b[38;5;227mpoisson_solvers.c\u001b[0;36m:\u001b[38;5;192msolve_poisson_DFT\u001b[0;36m:\u001b[0;32m116\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:28\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Getting gravitational potential, periodic boundary conditions (using 32 cores) done.\n",
"[02:24:28\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Acceleration loop, direction 0...\n",
"[02:24:28\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Acceleration loop, direction 0 done.\n",
"[02:24:28\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Acceleration loop, direction 1...\n",
"[02:24:28\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Acceleration loop, direction 1 done.\n",
"[02:24:28\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Acceleration loop, direction 2...\n",
"[02:24:28\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Acceleration loop, direction 2 done.\n",
"[02:24:28\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08c7b190 for g_pad in \u001b[38;5;227mdiagnostic.c\u001b[0;36m:\u001b[38;5;192mcompute_force_on_particle\u001b[0;36m:\u001b[0;32m70\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:28\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08c1b190 for xwopb in \u001b[38;5;227mdiagnostic.c\u001b[0;36m:\u001b[38;5;192mrun_force_diagnostic\u001b[0;36m:\u001b[0;32m227\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:28\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]====|Computing force for particle pair 3, bin 11: [0.300, 0.505] done. Total: 27 / max 60 pairs. Trials 93584 / max 100000000.\n",
"[02:24:28\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]====|Computing force for particle pair 1, bin 10: [0.179, 0.300]. Total: 28 / max 60 pairs...\n",
"[02:24:28\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated memory (393204 bytes) at 0x55cb08c1b190 for xwopb in \u001b[38;5;227mdiagnostic.c\u001b[0;36m:\u001b[38;5;192mrun_force_diagnostic\u001b[0;36m:\u001b[0;32m207\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:28\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated memory (1048576 bytes) at 0x55cb08c7b190 for g_pad in \u001b[38;5;227mdiagnostic.c\u001b[0;36m:\u001b[38;5;192mcompute_force_on_particle\u001b[0;36m:\u001b[0;32m32\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:28\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mdp3m0=1.000000\u001b[00m\n",
"[02:24:28\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mdp3m1=1.000000\u001b[00m\n",
"[02:24:28\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mdp3m2=1.000000\u001b[00m\n",
"[02:24:28\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mGiven the available memory, 4095 threads could be allocated and 32 threads will be used in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel\u001b[0;36m:\u001b[0;32m347\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:28\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mGiven the available memory, 4095 threads could be allocated and 32 threads will be used in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m73\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:28\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Getting density contrast (using 32 cores and 32 arrays, parallel routine 1)...\n",
"[02:24:28\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mPerforming CiC binning...\u001b[00m\n",
"[02:24:28\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 0...\u001b[00m\n",
"[02:24:28\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148900000b60 for threadedDensity[16] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:28\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148960000b60 for threadedDensity[13] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:28\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 16...\u001b[00m\n",
"[02:24:28\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 13...\u001b[00m\n",
"[02:24:28\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148950000b60 for threadedDensity[9] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:28\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1488e0000b60 for threadedDensity[6] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:28\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148978000b60 for threadedDensity[26] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:28\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 26...\u001b[00m\n",
"[02:24:28\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1488dc000b60 for threadedDensity[17] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:28\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 6...\u001b[00m\n",
"[02:24:28\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1488d8000b60 for threadedDensity[29] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:28\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148958000b60 for threadedDensity[22] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:28\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 22...\u001b[00m\n",
"[02:24:28\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 29...\u001b[00m\n",
"[02:24:28\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148910000b60 for threadedDensity[23] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:28\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148928000b60 for threadedDensity[20] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:28\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 23...\u001b[00m\n",
"[02:24:28\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1489a0000b60 for threadedDensity[3] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:28\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 20...\u001b[00m\n",
"[02:24:28\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 3...\u001b[00m\n",
"[02:24:28\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148968000b60 for threadedDensity[10] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:28\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148918000b60 for threadedDensity[15] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:28\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 10...\u001b[00m\n",
"[02:24:28\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 15...\u001b[00m\n",
"[02:24:28\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148930000b60 for threadedDensity[14] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:28\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148920000b60 for threadedDensity[12] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:28\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1488e8000b60 for threadedDensity[2] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:28\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 14...\u001b[00m\n",
"[02:24:28\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 12...\u001b[00m\n",
"[02:24:28\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 2...\u001b[00m\n",
"[02:24:28\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148988000b60 for threadedDensity[28] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:28\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1488d0000b60 for threadedDensity[5] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:28\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 28...\u001b[00m\n",
"[02:24:28\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 5...\u001b[00m\n",
"[02:24:28\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148998000b60 for threadedDensity[25] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:28\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148938000b60 for threadedDensity[18] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:28\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 25...\u001b[00m\n",
"[02:24:28\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 18...\u001b[00m\n",
"[02:24:28\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148980000b60 for threadedDensity[11] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:28\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1488f0000b60 for threadedDensity[24] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:28\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 11...\u001b[00m\n",
"[02:24:28\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 24...\u001b[00m\n",
"[02:24:28\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 17...\u001b[00m\n",
"[02:24:28\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148990000b60 for threadedDensity[21] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:28\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148940000b60 for threadedDensity[27] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:28\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 21...\u001b[00m\n",
"[02:24:28\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 27...\u001b[00m\n",
"[02:24:28\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1489b0000b60 for threadedDensity[1] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:28\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1489a8000b60 for threadedDensity[30] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:28\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148970000b60 for threadedDensity[7] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:28\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 30...\u001b[00m\n",
"[02:24:28\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 7...\u001b[00m\n",
"[02:24:28\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 1...\u001b[00m\n",
"[02:24:28\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 9...\u001b[00m\n",
"[02:24:28\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1488f8000b60 for threadedDensity[19] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:28\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148948000b60 for threadedDensity[31] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:28\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 19...\u001b[00m\n",
"[02:24:28\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 31...\u001b[00m\n",
"[02:24:28\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148908000b60 for threadedDensity[8] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:28\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 8...\u001b[00m\n",
"[02:24:28\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1489b8000b60 for threadedDensity[4] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:28\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 4...\u001b[00m\n",
"[02:24:28\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 1 done.\u001b[00m\n",
"[02:24:28\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 4 done.\u001b[00m\n",
"[02:24:28\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 29 done.\u001b[00m\n",
"[02:24:28\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 6 done.\u001b[00m\n",
"[02:24:28\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 22 done.\u001b[00m\n",
"[02:24:28\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 31 done.\u001b[00m\n",
"[02:24:28\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 16 done.\u001b[00m\n",
"[02:24:28\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 8 done.\u001b[00m\n",
"[02:24:28\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 13 done.\u001b[00m\n",
"[02:24:28\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 14 done.\u001b[00m\n",
"[02:24:28\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 18 done.\u001b[00m\n",
"[02:24:28\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 25 done.\u001b[00m\n",
"[02:24:28\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 12 done.\u001b[00m\n",
"[02:24:28\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 23 done.\u001b[00m\n",
"[02:24:28\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 2 done.\u001b[00m\n",
"[02:24:28\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 15 done.\u001b[00m\n",
"[02:24:28\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 10 done.\u001b[00m\n",
"[02:24:28\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 20 done.\u001b[00m\n",
"[02:24:28\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 3 done.\u001b[00m\n",
"[02:24:28\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 24 done.\u001b[00m\n",
"[02:24:28\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 11 done.\u001b[00m\n",
"[02:24:28\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 5 done.\u001b[00m\n",
"[02:24:28\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 28 done.\u001b[00m\n",
"[02:24:28\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 21 done.\u001b[00m\n",
"[02:24:28\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 27 done.\u001b[00m\n",
"[02:24:28\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 7 done.\u001b[00m\n",
"[02:24:28\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 30 done.\u001b[00m\n",
"[02:24:28\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 17 done.\u001b[00m\n",
"[02:24:28\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 26 done.\u001b[00m\n",
"[02:24:28\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 19 done.\u001b[00m\n",
"[02:24:28\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 9 done.\u001b[00m\n",
"[02:24:28\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 0 done.\u001b[00m\n",
"[02:24:28\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mPerforming CiC done.\u001b[00m\n",
"[02:24:28\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mPerforming CiC reduction...\u001b[00m\n",
"[02:24:28\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x1489b0000b60 for threadedDensity[1] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:28\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x1488e8000b60 for threadedDensity[2] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:28\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x1489a0000b60 for threadedDensity[3] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:28\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x1489b8000b60 for threadedDensity[4] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:28\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x1488d0000b60 for threadedDensity[5] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:28\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x1488e0000b60 for threadedDensity[6] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:28\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148970000b60 for threadedDensity[7] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:28\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148908000b60 for threadedDensity[8] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:28\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148950000b60 for threadedDensity[9] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:28\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148968000b60 for threadedDensity[10] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:28\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148980000b60 for threadedDensity[11] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:28\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148920000b60 for threadedDensity[12] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:28\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148960000b60 for threadedDensity[13] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:28\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148930000b60 for threadedDensity[14] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:28\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148918000b60 for threadedDensity[15] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:28\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148900000b60 for threadedDensity[16] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:28\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x1488dc000b60 for threadedDensity[17] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:28\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148938000b60 for threadedDensity[18] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:28\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x1488f8000b60 for threadedDensity[19] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:28\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148928000b60 for threadedDensity[20] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:28\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148990000b60 for threadedDensity[21] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:28\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148958000b60 for threadedDensity[22] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:28\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148910000b60 for threadedDensity[23] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:28\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x1488f0000b60 for threadedDensity[24] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:28\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148998000b60 for threadedDensity[25] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:28\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148978000b60 for threadedDensity[26] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:28\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148940000b60 for threadedDensity[27] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:28\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148988000b60 for threadedDensity[28] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:28\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x1488d8000b60 for threadedDensity[29] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:28\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x1489a8000b60 for threadedDensity[30] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:28\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148948000b60 for threadedDensity[31] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:28\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mPerforming CiC reduction done.\u001b[00m\n",
"[02:24:28\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Getting density contrast (using 32 cores and 32 arrays, parallel routine 1) done.\n",
"[02:24:28\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Getting gravitational potential, periodic boundary conditions (using 32 cores)...\n",
"[02:24:28\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (1081344 bytes) at 0x55cb08d7b1a0 for AUX in \u001b[38;5;227mpoisson_solvers.c\u001b[0;36m:\u001b[38;5;192msolve_poisson_DFT\u001b[0;36m:\u001b[0;32m106\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:28\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08d7b1a0 for AUX in \u001b[38;5;227mpoisson_solvers.c\u001b[0;36m:\u001b[38;5;192msolve_poisson_DFT\u001b[0;36m:\u001b[0;32m116\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:28\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Getting gravitational potential, periodic boundary conditions (using 32 cores) done.\n",
"[02:24:28\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Acceleration loop, direction 0...\n",
"[02:24:28\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Acceleration loop, direction 0 done.\n",
"[02:24:28\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Acceleration loop, direction 1...\n",
"[02:24:28\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Acceleration loop, direction 1 done.\n",
"[02:24:28\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Acceleration loop, direction 2...\n",
"[02:24:28\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Acceleration loop, direction 2 done.\n",
"[02:24:28\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08c7b190 for g_pad in \u001b[38;5;227mdiagnostic.c\u001b[0;36m:\u001b[38;5;192mcompute_force_on_particle\u001b[0;36m:\u001b[0;32m70\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:28\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08c1b190 for xwopb in \u001b[38;5;227mdiagnostic.c\u001b[0;36m:\u001b[38;5;192mrun_force_diagnostic\u001b[0;36m:\u001b[0;32m227\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:28\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]====|Computing force for particle pair 1, bin 10: [0.179, 0.300] done. Total: 28 / max 60 pairs. Trials 312071 / max 100000000.\n",
"[02:24:28\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]====|Computing force for particle pair 2, bin 10: [0.179, 0.300]. Total: 29 / max 60 pairs...\n",
"[02:24:28\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated memory (393204 bytes) at 0x55cb08c1b190 for xwopb in \u001b[38;5;227mdiagnostic.c\u001b[0;36m:\u001b[38;5;192mrun_force_diagnostic\u001b[0;36m:\u001b[0;32m207\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:28\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated memory (1048576 bytes) at 0x55cb08c7b190 for g_pad in \u001b[38;5;227mdiagnostic.c\u001b[0;36m:\u001b[38;5;192mcompute_force_on_particle\u001b[0;36m:\u001b[0;32m32\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:28\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mdp3m0=1.000000\u001b[00m\n",
"[02:24:28\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mdp3m1=1.000000\u001b[00m\n",
"[02:24:28\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mdp3m2=1.000000\u001b[00m\n",
"[02:24:28\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mGiven the available memory, 4095 threads could be allocated and 32 threads will be used in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel\u001b[0;36m:\u001b[0;32m347\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:28\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mGiven the available memory, 4095 threads could be allocated and 32 threads will be used in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m73\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:28\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Getting density contrast (using 32 cores and 32 arrays, parallel routine 1)...\n",
"[02:24:28\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mPerforming CiC binning...\u001b[00m\n",
"[02:24:28\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 0...\u001b[00m\n",
"[02:24:28\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148908000b60 for threadedDensity[8] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:28\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148960000b60 for threadedDensity[13] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:28\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 8...\u001b[00m\n",
"[02:24:28\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 13...\u001b[00m\n",
"[02:24:28\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148988000b60 for threadedDensity[28] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:28\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148978000b60 for threadedDensity[26] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:28\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1488dc000b60 for threadedDensity[17] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:28\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 26...\u001b[00m\n",
"[02:24:28\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 17...\u001b[00m\n",
"[02:24:28\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1488e0000b60 for threadedDensity[6] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:28\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148900000b60 for threadedDensity[16] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:28\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 6...\u001b[00m\n",
"[02:24:28\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1488d8000b60 for threadedDensity[29] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:28\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148928000b60 for threadedDensity[20] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:28\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1489a0000b60 for threadedDensity[3] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:28\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 20...\u001b[00m\n",
"[02:24:28\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 3...\u001b[00m\n",
"[02:24:28\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 29...\u001b[00m\n",
"[02:24:28\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 16...\u001b[00m\n",
"[02:24:28\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1489b0000b60 for threadedDensity[1] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:28\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148958000b60 for threadedDensity[22] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:28\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 1...\u001b[00m\n",
"[02:24:28\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 22...\u001b[00m\n",
"[02:24:28\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148968000b60 for threadedDensity[10] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:28\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148918000b60 for threadedDensity[15] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:28\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 10...\u001b[00m\n",
"[02:24:28\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 15...\u001b[00m\n",
"[02:24:28\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148920000b60 for threadedDensity[12] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:28\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148910000b60 for threadedDensity[23] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:28\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1488e8000b60 for threadedDensity[2] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:28\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 23...\u001b[00m\n",
"[02:24:28\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 2...\u001b[00m\n",
"[02:24:28\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 12...\u001b[00m\n",
"[02:24:28\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148938000b60 for threadedDensity[18] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:28\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1488f0000b60 for threadedDensity[24] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:28\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148980000b60 for threadedDensity[11] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:28\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 24...\u001b[00m\n",
"[02:24:28\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 11...\u001b[00m\n",
"[02:24:28\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148998000b60 for threadedDensity[25] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:28\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 18...\u001b[00m\n",
"[02:24:28\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148930000b60 for threadedDensity[14] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:28\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 25...\u001b[00m\n",
"[02:24:28\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 14...\u001b[00m\n",
"[02:24:28\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 28...\u001b[00m\n",
"[02:24:28\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1488d0000b60 for threadedDensity[5] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:28\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148990000b60 for threadedDensity[21] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:28\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148940000b60 for threadedDensity[27] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:28\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 21...\u001b[00m\n",
"[02:24:28\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 27...\u001b[00m\n",
"[02:24:28\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148950000b60 for threadedDensity[9] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:28\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1488f8000b60 for threadedDensity[19] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:28\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 9...\u001b[00m\n",
"[02:24:28\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 19...\u001b[00m\n",
"[02:24:28\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1489b8000b60 for threadedDensity[4] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:28\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1489a8000b60 for threadedDensity[30] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:28\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148970000b60 for threadedDensity[7] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:28\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 30...\u001b[00m\n",
"[02:24:28\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 7...\u001b[00m\n",
"[02:24:28\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 4...\u001b[00m\n",
"[02:24:28\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 5...\u001b[00m\n",
"[02:24:28\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148948000b60 for threadedDensity[31] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:28\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 31...\u001b[00m\n",
"[02:24:28\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 18 done.\u001b[00m\n",
"[02:24:28\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 14 done.\u001b[00m\n",
"[02:24:28\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 29 done.\u001b[00m\n",
"[02:24:28\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 6 done.\u001b[00m\n",
"[02:24:28\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 31 done.\u001b[00m\n",
"[02:24:28\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 22 done.\u001b[00m\n",
"[02:24:28\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 13 done.\u001b[00m\n",
"[02:24:28\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 8 done.\u001b[00m\n",
"[02:24:28\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 1 done.\u001b[00m\n",
"[02:24:28\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 16 done.\u001b[00m\n",
"[02:24:28\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 10 done.\u001b[00m\n",
"[02:24:28\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 15 done.\u001b[00m\n",
"[02:24:28\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 12 done.\u001b[00m\n",
"[02:24:28\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 25 done.\u001b[00m\n",
"[02:24:28\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 23 done.\u001b[00m\n",
"[02:24:28\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 2 done.\u001b[00m\n",
"[02:24:28\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 0 done.\u001b[00m\n",
"[02:24:28\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 4 done.\u001b[00m\n",
"[02:24:28\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 11 done.\u001b[00m\n",
"[02:24:28\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 24 done.\u001b[00m\n",
"[02:24:28\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 3 done.\u001b[00m\n",
"[02:24:28\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 20 done.\u001b[00m\n",
"[02:24:28\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 28 done.\u001b[00m\n",
"[02:24:28\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 5 done.\u001b[00m\n",
"[02:24:28\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 17 done.\u001b[00m\n",
"[02:24:28\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 26 done.\u001b[00m\n",
"[02:24:28\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 21 done.\u001b[00m\n",
"[02:24:28\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 27 done.\u001b[00m\n",
"[02:24:28\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 7 done.\u001b[00m\n",
"[02:24:28\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 30 done.\u001b[00m\n",
"[02:24:28\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 9 done.\u001b[00m\n",
"[02:24:28\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 19 done.\u001b[00m\n",
"[02:24:28\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mPerforming CiC done.\u001b[00m\n",
"[02:24:28\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mPerforming CiC reduction...\u001b[00m\n",
"[02:24:28\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x1489b0000b60 for threadedDensity[1] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:28\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x1488e8000b60 for threadedDensity[2] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:28\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x1489a0000b60 for threadedDensity[3] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:28\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x1489b8000b60 for threadedDensity[4] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:28\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x1488d0000b60 for threadedDensity[5] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:28\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x1488e0000b60 for threadedDensity[6] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:28\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148970000b60 for threadedDensity[7] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:28\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148908000b60 for threadedDensity[8] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:28\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148950000b60 for threadedDensity[9] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:28\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148968000b60 for threadedDensity[10] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:28\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148980000b60 for threadedDensity[11] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:28\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148920000b60 for threadedDensity[12] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:28\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148960000b60 for threadedDensity[13] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:28\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148930000b60 for threadedDensity[14] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:28\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148918000b60 for threadedDensity[15] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:28\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148900000b60 for threadedDensity[16] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:28\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x1488dc000b60 for threadedDensity[17] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:28\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148938000b60 for threadedDensity[18] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:28\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x1488f8000b60 for threadedDensity[19] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:28\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148928000b60 for threadedDensity[20] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:28\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148990000b60 for threadedDensity[21] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:28\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148958000b60 for threadedDensity[22] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:28\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148910000b60 for threadedDensity[23] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:28\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x1488f0000b60 for threadedDensity[24] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:28\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148998000b60 for threadedDensity[25] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:28\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148978000b60 for threadedDensity[26] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:28\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148940000b60 for threadedDensity[27] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:28\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148988000b60 for threadedDensity[28] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:28\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x1488d8000b60 for threadedDensity[29] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:28\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x1489a8000b60 for threadedDensity[30] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:28\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148948000b60 for threadedDensity[31] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:28\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mPerforming CiC reduction done.\u001b[00m\n",
"[02:24:28\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Getting density contrast (using 32 cores and 32 arrays, parallel routine 1) done.\n",
"[02:24:28\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Getting gravitational potential, periodic boundary conditions (using 32 cores)...\n",
"[02:24:28\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (1081344 bytes) at 0x55cb08d7b1a0 for AUX in \u001b[38;5;227mpoisson_solvers.c\u001b[0;36m:\u001b[38;5;192msolve_poisson_DFT\u001b[0;36m:\u001b[0;32m106\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:28\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08d7b1a0 for AUX in \u001b[38;5;227mpoisson_solvers.c\u001b[0;36m:\u001b[38;5;192msolve_poisson_DFT\u001b[0;36m:\u001b[0;32m116\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:28\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Getting gravitational potential, periodic boundary conditions (using 32 cores) done.\n",
"[02:24:28\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Acceleration loop, direction 0...\n",
"[02:24:28\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Acceleration loop, direction 0 done.\n",
"[02:24:28\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Acceleration loop, direction 1...\n",
"[02:24:28\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Acceleration loop, direction 1 done.\n",
"[02:24:28\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Acceleration loop, direction 2...\n",
"[02:24:28\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Acceleration loop, direction 2 done.\n",
"[02:24:28\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08c7b190 for g_pad in \u001b[38;5;227mdiagnostic.c\u001b[0;36m:\u001b[38;5;192mcompute_force_on_particle\u001b[0;36m:\u001b[0;32m70\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:28\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08c1b190 for xwopb in \u001b[38;5;227mdiagnostic.c\u001b[0;36m:\u001b[38;5;192mrun_force_diagnostic\u001b[0;36m:\u001b[0;32m227\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:28\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]====|Computing force for particle pair 2, bin 10: [0.179, 0.300] done. Total: 29 / max 60 pairs. Trials 873781 / max 100000000.\n",
"[02:24:28\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]====|Computing force for particle pair 3, bin 10: [0.179, 0.300]. Total: 30 / max 60 pairs...\n",
"[02:24:28\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated memory (393204 bytes) at 0x55cb08c1b190 for xwopb in \u001b[38;5;227mdiagnostic.c\u001b[0;36m:\u001b[38;5;192mrun_force_diagnostic\u001b[0;36m:\u001b[0;32m207\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:28\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated memory (1048576 bytes) at 0x55cb08c7b190 for g_pad in \u001b[38;5;227mdiagnostic.c\u001b[0;36m:\u001b[38;5;192mcompute_force_on_particle\u001b[0;36m:\u001b[0;32m32\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:28\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mdp3m0=1.000000\u001b[00m\n",
"[02:24:28\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mdp3m1=1.000000\u001b[00m\n",
"[02:24:28\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mdp3m2=1.000000\u001b[00m\n",
"[02:24:28\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mGiven the available memory, 4095 threads could be allocated and 32 threads will be used in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel\u001b[0;36m:\u001b[0;32m347\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:28\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mGiven the available memory, 4095 threads could be allocated and 32 threads will be used in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m73\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:28\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Getting density contrast (using 32 cores and 32 arrays, parallel routine 1)...\n",
"[02:24:28\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mPerforming CiC binning...\u001b[00m\n",
"[02:24:28\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 0...\u001b[00m\n",
"[02:24:28\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148950000b60 for threadedDensity[9] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:28\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148908000b60 for threadedDensity[8] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:28\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148960000b60 for threadedDensity[13] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:28\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 8...\u001b[00m\n",
"[02:24:28\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 13...\u001b[00m\n",
"[02:24:28\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148900000b60 for threadedDensity[16] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:28\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148978000b60 for threadedDensity[26] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:28\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148910000b60 for threadedDensity[23] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:28\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 16...\u001b[00m\n",
"[02:24:28\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1488e0000b60 for threadedDensity[6] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:28\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 23...\u001b[00m\n",
"[02:24:28\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1488d8000b60 for threadedDensity[29] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:28\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 6...\u001b[00m\n",
"[02:24:28\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 29...\u001b[00m\n",
"[02:24:28\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1489b8000b60 for threadedDensity[4] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:28\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148928000b60 for threadedDensity[20] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:28\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1489a0000b60 for threadedDensity[3] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:28\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 20...\u001b[00m\n",
"[02:24:28\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 3...\u001b[00m\n",
"[02:24:28\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148958000b60 for threadedDensity[22] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:28\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1489b0000b60 for threadedDensity[1] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:28\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 22...\u001b[00m\n",
"[02:24:28\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 1...\u001b[00m\n",
"[02:24:28\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148968000b60 for threadedDensity[10] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:28\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148918000b60 for threadedDensity[15] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:28\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 10...\u001b[00m\n",
"[02:24:28\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 15...\u001b[00m\n",
"[02:24:28\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148930000b60 for threadedDensity[14] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:28\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148920000b60 for threadedDensity[12] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:28\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 14...\u001b[00m\n",
"[02:24:28\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1488e8000b60 for threadedDensity[2] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:28\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148938000b60 for threadedDensity[18] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:28\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 18...\u001b[00m\n",
"[02:24:28\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 12...\u001b[00m\n",
"[02:24:28\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148998000b60 for threadedDensity[25] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:28\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 2...\u001b[00m\n",
"[02:24:28\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 25...\u001b[00m\n",
"[02:24:28\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 4...\u001b[00m\n",
"[02:24:28\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1488d0000b60 for threadedDensity[5] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:28\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148988000b60 for threadedDensity[28] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:28\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 5...\u001b[00m\n",
"[02:24:28\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 28...\u001b[00m\n",
"[02:24:28\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1488f0000b60 for threadedDensity[24] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:28\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148980000b60 for threadedDensity[11] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:28\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 24...\u001b[00m\n",
"[02:24:28\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 11...\u001b[00m\n",
"[02:24:28\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148940000b60 for threadedDensity[27] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:28\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 27...\u001b[00m\n",
"[02:24:28\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148990000b60 for threadedDensity[21] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:28\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1488dc000b60 for threadedDensity[17] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:28\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 17...\u001b[00m\n",
"[02:24:28\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 26...\u001b[00m\n",
"[02:24:28\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 21...\u001b[00m\n",
"[02:24:28\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1489a8000b60 for threadedDensity[30] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:28\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148970000b60 for threadedDensity[7] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:28\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 30...\u001b[00m\n",
"[02:24:28\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 7...\u001b[00m\n",
"[02:24:28\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1488f8000b60 for threadedDensity[19] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:28\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 9...\u001b[00m\n",
"[02:24:28\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 19...\u001b[00m\n",
"[02:24:28\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148948000b60 for threadedDensity[31] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:28\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 31...\u001b[00m\n",
"[02:24:28\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 22 done.\u001b[00m\n",
"[02:24:28\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 31 done.\u001b[00m\n",
"[02:24:28\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 6 done.\u001b[00m\n",
"[02:24:28\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 29 done.\u001b[00m\n",
"[02:24:28\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 1 done.\u001b[00m\n",
"[02:24:28\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 16 done.\u001b[00m\n",
"[02:24:28\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 13 done.\u001b[00m\n",
"[02:24:28\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 8 done.\u001b[00m\n",
"[02:24:28\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 25 done.\u001b[00m\n",
"[02:24:28\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 12 done.\u001b[00m\n",
"[02:24:28\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 18 done.\u001b[00m\n",
"[02:24:28\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 14 done.\u001b[00m\n",
"[02:24:28\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 2 done.\u001b[00m\n",
"[02:24:28\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 23 done.\u001b[00m\n",
"[02:24:28\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 15 done.\u001b[00m\n",
"[02:24:28\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 10 done.\u001b[00m\n",
"[02:24:28\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 24 done.\u001b[00m\n",
"[02:24:28\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 11 done.\u001b[00m\n",
"[02:24:28\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 5 done.\u001b[00m\n",
"[02:24:28\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 28 done.\u001b[00m\n",
"[02:24:28\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 3 done.\u001b[00m\n",
"[02:24:28\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 20 done.\u001b[00m\n",
"[02:24:28\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 0 done.\u001b[00m\n",
"[02:24:28\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 4 done.\u001b[00m\n",
"[02:24:28\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 27 done.\u001b[00m\n",
"[02:24:28\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 21 done.\u001b[00m\n",
"[02:24:28\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 17 done.\u001b[00m\n",
"[02:24:28\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 26 done.\u001b[00m\n",
"[02:24:28\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 30 done.\u001b[00m\n",
"[02:24:28\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 7 done.\u001b[00m\n",
"[02:24:28\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 19 done.\u001b[00m\n",
"[02:24:28\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 9 done.\u001b[00m\n",
"[02:24:28\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mPerforming CiC done.\u001b[00m\n",
"[02:24:28\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mPerforming CiC reduction...\u001b[00m\n",
"[02:24:28\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x1489b0000b60 for threadedDensity[1] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:28\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x1488e8000b60 for threadedDensity[2] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:28\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x1489a0000b60 for threadedDensity[3] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:28\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x1489b8000b60 for threadedDensity[4] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:28\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x1488d0000b60 for threadedDensity[5] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:28\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x1488e0000b60 for threadedDensity[6] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:28\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148970000b60 for threadedDensity[7] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:28\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148908000b60 for threadedDensity[8] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:28\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148950000b60 for threadedDensity[9] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:28\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148968000b60 for threadedDensity[10] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:28\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148980000b60 for threadedDensity[11] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:28\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148920000b60 for threadedDensity[12] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:28\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148960000b60 for threadedDensity[13] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:28\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148930000b60 for threadedDensity[14] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:28\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148918000b60 for threadedDensity[15] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:28\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148900000b60 for threadedDensity[16] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:28\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x1488dc000b60 for threadedDensity[17] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:28\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148938000b60 for threadedDensity[18] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:28\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x1488f8000b60 for threadedDensity[19] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:28\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148928000b60 for threadedDensity[20] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:28\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148990000b60 for threadedDensity[21] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:28\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148958000b60 for threadedDensity[22] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:28\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148910000b60 for threadedDensity[23] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:28\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x1488f0000b60 for threadedDensity[24] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:28\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148998000b60 for threadedDensity[25] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:28\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148978000b60 for threadedDensity[26] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:28\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148940000b60 for threadedDensity[27] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:28\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148988000b60 for threadedDensity[28] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:28\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x1488d8000b60 for threadedDensity[29] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:28\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x1489a8000b60 for threadedDensity[30] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:28\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148948000b60 for threadedDensity[31] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:28\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mPerforming CiC reduction done.\u001b[00m\n",
"[02:24:28\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Getting density contrast (using 32 cores and 32 arrays, parallel routine 1) done.\n",
"[02:24:28\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Getting gravitational potential, periodic boundary conditions (using 32 cores)...\n",
"[02:24:28\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (1081344 bytes) at 0x55cb08d7b1a0 for AUX in \u001b[38;5;227mpoisson_solvers.c\u001b[0;36m:\u001b[38;5;192msolve_poisson_DFT\u001b[0;36m:\u001b[0;32m106\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:28\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08d7b1a0 for AUX in \u001b[38;5;227mpoisson_solvers.c\u001b[0;36m:\u001b[38;5;192msolve_poisson_DFT\u001b[0;36m:\u001b[0;32m116\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:28\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Getting gravitational potential, periodic boundary conditions (using 32 cores) done.\n",
"[02:24:28\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Acceleration loop, direction 0...\n",
"[02:24:28\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Acceleration loop, direction 0 done.\n",
"[02:24:28\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Acceleration loop, direction 1...\n",
"[02:24:28\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Acceleration loop, direction 1 done.\n",
"[02:24:28\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Acceleration loop, direction 2...\n",
"[02:24:28\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Acceleration loop, direction 2 done.\n",
"[02:24:28\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08c7b190 for g_pad in \u001b[38;5;227mdiagnostic.c\u001b[0;36m:\u001b[38;5;192mcompute_force_on_particle\u001b[0;36m:\u001b[0;32m70\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:28\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08c1b190 for xwopb in \u001b[38;5;227mdiagnostic.c\u001b[0;36m:\u001b[38;5;192mrun_force_diagnostic\u001b[0;36m:\u001b[0;32m227\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:28\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]====|Computing force for particle pair 3, bin 10: [0.179, 0.300] done. Total: 30 / max 60 pairs. Trials 1239250 / max 100000000.\n",
"[02:24:29\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]====|Computing force for particle pair 1, bin 9: [0.106, 0.179]. Total: 31 / max 60 pairs...\n",
"[02:24:29\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated memory (393204 bytes) at 0x55cb08c1b190 for xwopb in \u001b[38;5;227mdiagnostic.c\u001b[0;36m:\u001b[38;5;192mrun_force_diagnostic\u001b[0;36m:\u001b[0;32m207\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:29\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated memory (1048576 bytes) at 0x55cb08c7b190 for g_pad in \u001b[38;5;227mdiagnostic.c\u001b[0;36m:\u001b[38;5;192mcompute_force_on_particle\u001b[0;36m:\u001b[0;32m32\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:29\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mdp3m0=1.000000\u001b[00m\n",
"[02:24:29\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mdp3m1=1.000000\u001b[00m\n",
"[02:24:29\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mdp3m2=1.000000\u001b[00m\n",
"[02:24:29\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mGiven the available memory, 4095 threads could be allocated and 32 threads will be used in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel\u001b[0;36m:\u001b[0;32m347\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:29\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mGiven the available memory, 4095 threads could be allocated and 32 threads will be used in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m73\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:29\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Getting density contrast (using 32 cores and 32 arrays, parallel routine 1)...\n",
"[02:24:29\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mPerforming CiC binning...\u001b[00m\n",
"[02:24:29\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 0...\u001b[00m\n",
"[02:24:29\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148950000b60 for threadedDensity[9] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:29\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148960000b60 for threadedDensity[13] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:29\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148908000b60 for threadedDensity[8] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:29\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 13...\u001b[00m\n",
"[02:24:29\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 8...\u001b[00m\n",
"[02:24:29\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148940000b60 for threadedDensity[27] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:29\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148990000b60 for threadedDensity[21] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:29\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 27...\u001b[00m\n",
"[02:24:29\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 21...\u001b[00m\n",
"[02:24:29\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148900000b60 for threadedDensity[16] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:29\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148928000b60 for threadedDensity[20] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:29\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148910000b60 for threadedDensity[23] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:29\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1488dc000b60 for threadedDensity[17] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:29\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148978000b60 for threadedDensity[26] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:29\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 17...\u001b[00m\n",
"[02:24:29\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 26...\u001b[00m\n",
"[02:24:29\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1489b0000b60 for threadedDensity[1] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:29\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1488e8000b60 for threadedDensity[2] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:29\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 23...\u001b[00m\n",
"[02:24:29\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 2...\u001b[00m\n",
"[02:24:29\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1488d8000b60 for threadedDensity[29] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:29\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1488e0000b60 for threadedDensity[6] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:29\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 29...\u001b[00m\n",
"[02:24:29\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 6...\u001b[00m\n",
"[02:24:29\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 16...\u001b[00m\n",
"[02:24:29\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 1...\u001b[00m\n",
"[02:24:29\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148920000b60 for threadedDensity[12] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:29\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148968000b60 for threadedDensity[10] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:29\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 10...\u001b[00m\n",
"[02:24:29\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148918000b60 for threadedDensity[15] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:29\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 15...\u001b[00m\n",
"[02:24:29\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148938000b60 for threadedDensity[18] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:29\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148930000b60 for threadedDensity[14] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:29\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 18...\u001b[00m\n",
"[02:24:29\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 14...\u001b[00m\n",
"[02:24:29\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148958000b60 for threadedDensity[22] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:29\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148998000b60 for threadedDensity[25] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:29\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 12...\u001b[00m\n",
"[02:24:29\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 25...\u001b[00m\n",
"[02:24:29\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 22...\u001b[00m\n",
"[02:24:29\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1488f0000b60 for threadedDensity[24] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:29\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148980000b60 for threadedDensity[11] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:29\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 24...\u001b[00m\n",
"[02:24:29\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 11...\u001b[00m\n",
"[02:24:29\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 20...\u001b[00m\n",
"[02:24:29\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1489a0000b60 for threadedDensity[3] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:29\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1489b8000b60 for threadedDensity[4] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:29\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148988000b60 for threadedDensity[28] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:29\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1488d0000b60 for threadedDensity[5] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:29\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 28...\u001b[00m\n",
"[02:24:29\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 5...\u001b[00m\n",
"[02:24:29\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 3...\u001b[00m\n",
"[02:24:29\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 4...\u001b[00m\n",
"[02:24:29\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1488f8000b60 for threadedDensity[19] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:29\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 9...\u001b[00m\n",
"[02:24:29\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 19...\u001b[00m\n",
"[02:24:29\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1489a8000b60 for threadedDensity[30] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:29\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148970000b60 for threadedDensity[7] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:29\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 30...\u001b[00m\n",
"[02:24:29\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 7...\u001b[00m\n",
"[02:24:29\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148948000b60 for threadedDensity[31] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:29\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 31...\u001b[00m\n",
"[02:24:29\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 22 done.\u001b[00m\n",
"[02:24:29\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 31 done.\u001b[00m\n",
"[02:24:29\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 6 done.\u001b[00m\n",
"[02:24:29\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 29 done.\u001b[00m\n",
"[02:24:29\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 16 done.\u001b[00m\n",
"[02:24:29\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 1 done.\u001b[00m\n",
"[02:24:29\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 13 done.\u001b[00m\n",
"[02:24:29\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 8 done.\u001b[00m\n",
"[02:24:29\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 25 done.\u001b[00m\n",
"[02:24:29\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 12 done.\u001b[00m\n",
"[02:24:29\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 18 done.\u001b[00m\n",
"[02:24:29\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 14 done.\u001b[00m\n",
"[02:24:29\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 2 done.\u001b[00m\n",
"[02:24:29\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 23 done.\u001b[00m\n",
"[02:24:29\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 15 done.\u001b[00m\n",
"[02:24:29\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 10 done.\u001b[00m\n",
"[02:24:29\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 3 done.\u001b[00m\n",
"[02:24:29\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 20 done.\u001b[00m\n",
"[02:24:29\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 17 done.\u001b[00m\n",
"[02:24:29\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 26 done.\u001b[00m\n",
"[02:24:29\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 11 done.\u001b[00m\n",
"[02:24:29\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 24 done.\u001b[00m\n",
"[02:24:29\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 4 done.\u001b[00m\n",
"[02:24:29\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 0 done.\u001b[00m\n",
"[02:24:29\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 27 done.\u001b[00m\n",
"[02:24:29\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 21 done.\u001b[00m\n",
"[02:24:29\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 28 done.\u001b[00m\n",
"[02:24:29\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 5 done.\u001b[00m\n",
"[02:24:29\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 19 done.\u001b[00m\n",
"[02:24:29\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 9 done.\u001b[00m\n",
"[02:24:29\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 30 done.\u001b[00m\n",
"[02:24:29\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 7 done.\u001b[00m\n",
"[02:24:29\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mPerforming CiC done.\u001b[00m\n",
"[02:24:29\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mPerforming CiC reduction...\u001b[00m\n",
"[02:24:29\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x1489b0000b60 for threadedDensity[1] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:29\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x1488e8000b60 for threadedDensity[2] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:29\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x1489a0000b60 for threadedDensity[3] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:29\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x1489b8000b60 for threadedDensity[4] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:29\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x1488d0000b60 for threadedDensity[5] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:29\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x1488e0000b60 for threadedDensity[6] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:29\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148970000b60 for threadedDensity[7] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:29\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148908000b60 for threadedDensity[8] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:29\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148950000b60 for threadedDensity[9] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:29\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148968000b60 for threadedDensity[10] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:29\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148980000b60 for threadedDensity[11] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:29\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148920000b60 for threadedDensity[12] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:29\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148960000b60 for threadedDensity[13] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:29\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148930000b60 for threadedDensity[14] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:29\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148918000b60 for threadedDensity[15] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:29\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148900000b60 for threadedDensity[16] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:29\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x1488dc000b60 for threadedDensity[17] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:29\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148938000b60 for threadedDensity[18] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:29\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x1488f8000b60 for threadedDensity[19] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:29\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148928000b60 for threadedDensity[20] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:29\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148990000b60 for threadedDensity[21] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:29\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148958000b60 for threadedDensity[22] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:29\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148910000b60 for threadedDensity[23] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:29\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x1488f0000b60 for threadedDensity[24] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:29\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148998000b60 for threadedDensity[25] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:29\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148978000b60 for threadedDensity[26] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:29\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148940000b60 for threadedDensity[27] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:29\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148988000b60 for threadedDensity[28] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:29\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x1488d8000b60 for threadedDensity[29] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:29\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x1489a8000b60 for threadedDensity[30] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:29\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148948000b60 for threadedDensity[31] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:29\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mPerforming CiC reduction done.\u001b[00m\n",
"[02:24:29\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Getting density contrast (using 32 cores and 32 arrays, parallel routine 1) done.\n",
"[02:24:29\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Getting gravitational potential, periodic boundary conditions (using 32 cores)...\n",
"[02:24:29\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (1081344 bytes) at 0x55cb08d7b1a0 for AUX in \u001b[38;5;227mpoisson_solvers.c\u001b[0;36m:\u001b[38;5;192msolve_poisson_DFT\u001b[0;36m:\u001b[0;32m106\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:29\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08d7b1a0 for AUX in \u001b[38;5;227mpoisson_solvers.c\u001b[0;36m:\u001b[38;5;192msolve_poisson_DFT\u001b[0;36m:\u001b[0;32m116\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:29\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Getting gravitational potential, periodic boundary conditions (using 32 cores) done.\n",
"[02:24:29\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Acceleration loop, direction 0...\n",
"[02:24:29\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Acceleration loop, direction 0 done.\n",
"[02:24:29\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Acceleration loop, direction 1...\n",
"[02:24:29\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Acceleration loop, direction 1 done.\n",
"[02:24:29\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Acceleration loop, direction 2...\n",
"[02:24:29\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Acceleration loop, direction 2 done.\n",
"[02:24:29\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08c7b190 for g_pad in \u001b[38;5;227mdiagnostic.c\u001b[0;36m:\u001b[38;5;192mcompute_force_on_particle\u001b[0;36m:\u001b[0;32m70\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:29\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08c1b190 for xwopb in \u001b[38;5;227mdiagnostic.c\u001b[0;36m:\u001b[38;5;192mrun_force_diagnostic\u001b[0;36m:\u001b[0;32m227\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:29\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]====|Computing force for particle pair 1, bin 9: [0.106, 0.179] done. Total: 31 / max 60 pairs. Trials 2570847 / max 100000000.\n",
"[02:24:29\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]====|Computing force for particle pair 2, bin 9: [0.106, 0.179]. Total: 32 / max 60 pairs...\n",
"[02:24:29\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated memory (393204 bytes) at 0x55cb08c1b190 for xwopb in \u001b[38;5;227mdiagnostic.c\u001b[0;36m:\u001b[38;5;192mrun_force_diagnostic\u001b[0;36m:\u001b[0;32m207\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:29\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated memory (1048576 bytes) at 0x55cb08c7b190 for g_pad in \u001b[38;5;227mdiagnostic.c\u001b[0;36m:\u001b[38;5;192mcompute_force_on_particle\u001b[0;36m:\u001b[0;32m32\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:29\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mdp3m0=1.000000\u001b[00m\n",
"[02:24:29\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mdp3m1=1.000000\u001b[00m\n",
"[02:24:29\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mdp3m2=1.000000\u001b[00m\n",
"[02:24:29\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mGiven the available memory, 4095 threads could be allocated and 32 threads will be used in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel\u001b[0;36m:\u001b[0;32m347\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:29\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mGiven the available memory, 4095 threads could be allocated and 32 threads will be used in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m73\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:29\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Getting density contrast (using 32 cores and 32 arrays, parallel routine 1)...\n",
"[02:24:29\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mPerforming CiC binning...\u001b[00m\n",
"[02:24:29\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 0...\u001b[00m\n",
"[02:24:29\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148950000b60 for threadedDensity[9] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:29\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148900000b60 for threadedDensity[16] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:29\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 16...\u001b[00m\n",
"[02:24:29\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148908000b60 for threadedDensity[8] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:29\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148960000b60 for threadedDensity[13] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:29\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 8...\u001b[00m\n",
"[02:24:29\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 13...\u001b[00m\n",
"[02:24:29\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148958000b60 for threadedDensity[22] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:29\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148910000b60 for threadedDensity[23] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:29\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 22...\u001b[00m\n",
"[02:24:29\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 23...\u001b[00m\n",
"[02:24:29\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148988000b60 for threadedDensity[28] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:29\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 28...\u001b[00m\n",
"[02:24:29\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1488d0000b60 for threadedDensity[5] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:29\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148928000b60 for threadedDensity[20] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:29\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1489a0000b60 for threadedDensity[3] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:29\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 20...\u001b[00m\n",
"[02:24:29\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 3...\u001b[00m\n",
"[02:24:29\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1488e0000b60 for threadedDensity[6] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:29\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1488d8000b60 for threadedDensity[29] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:29\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 6...\u001b[00m\n",
"[02:24:29\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 29...\u001b[00m\n",
"[02:24:29\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1489b0000b60 for threadedDensity[1] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:29\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 1...\u001b[00m\n",
"[02:24:29\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148968000b60 for threadedDensity[10] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:29\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148920000b60 for threadedDensity[12] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:29\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 12...\u001b[00m\n",
"[02:24:29\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148948000b60 for threadedDensity[31] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:29\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1488e8000b60 for threadedDensity[2] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:29\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 31...\u001b[00m\n",
"[02:24:29\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148930000b60 for threadedDensity[14] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:29\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148938000b60 for threadedDensity[18] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:29\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 14...\u001b[00m\n",
"[02:24:29\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 18...\u001b[00m\n",
"[02:24:29\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148918000b60 for threadedDensity[15] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:29\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 10...\u001b[00m\n",
"[02:24:29\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1489a8000b60 for threadedDensity[30] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:29\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148970000b60 for threadedDensity[7] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:29\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 30...\u001b[00m\n",
"[02:24:29\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 7...\u001b[00m\n",
"[02:24:29\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 2...\u001b[00m\n",
"[02:24:29\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148998000b60 for threadedDensity[25] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:29\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 15...\u001b[00m\n",
"[02:24:29\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 25...\u001b[00m\n",
"[02:24:29\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148980000b60 for threadedDensity[11] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:29\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1488f0000b60 for threadedDensity[24] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:29\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 11...\u001b[00m\n",
"[02:24:29\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 24...\u001b[00m\n",
"[02:24:29\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 5...\u001b[00m\n",
"[02:24:29\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148990000b60 for threadedDensity[21] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:29\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148940000b60 for threadedDensity[27] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:29\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 21...\u001b[00m\n",
"[02:24:29\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 27...\u001b[00m\n",
"[02:24:29\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148978000b60 for threadedDensity[26] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:29\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1488dc000b60 for threadedDensity[17] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:29\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 26...\u001b[00m\n",
"[02:24:29\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 17...\u001b[00m\n",
"[02:24:29\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1489b8000b60 for threadedDensity[4] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:29\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1488f8000b60 for threadedDensity[19] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:29\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 9...\u001b[00m\n",
"[02:24:29\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 19...\u001b[00m\n",
"[02:24:29\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 4...\u001b[00m\n",
"[02:24:29\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 11 done.\u001b[00m\n",
"[02:24:29\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 24 done.\u001b[00m\n",
"[02:24:29\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 29 done.\u001b[00m\n",
"[02:24:29\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 6 done.\u001b[00m\n",
"[02:24:29\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 22 done.\u001b[00m\n",
"[02:24:29\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 31 done.\u001b[00m\n",
"[02:24:29\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 16 done.\u001b[00m\n",
"[02:24:29\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 1 done.\u001b[00m\n",
"[02:24:29\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 8 done.\u001b[00m\n",
"[02:24:29\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 13 done.\u001b[00m\n",
"[02:24:29\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 18 done.\u001b[00m\n",
"[02:24:29\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 14 done.\u001b[00m\n",
"[02:24:29\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 25 done.\u001b[00m\n",
"[02:24:29\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 12 done.\u001b[00m\n",
"[02:24:29\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 15 done.\u001b[00m\n",
"[02:24:29\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 10 done.\u001b[00m\n",
"[02:24:29\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 23 done.\u001b[00m\n",
"[02:24:29\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 2 done.\u001b[00m\n",
"[02:24:29\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 17 done.\u001b[00m\n",
"[02:24:29\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 26 done.\u001b[00m\n",
"[02:24:29\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 3 done.\u001b[00m\n",
"[02:24:29\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 20 done.\u001b[00m\n",
"[02:24:29\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 0 done.\u001b[00m\n",
"[02:24:29\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 4 done.\u001b[00m\n",
"[02:24:29\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 28 done.\u001b[00m\n",
"[02:24:29\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 5 done.\u001b[00m\n",
"[02:24:29\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 30 done.\u001b[00m\n",
"[02:24:29\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 7 done.\u001b[00m\n",
"[02:24:29\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 21 done.\u001b[00m\n",
"[02:24:29\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 27 done.\u001b[00m\n",
"[02:24:29\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 9 done.\u001b[00m\n",
"[02:24:29\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 19 done.\u001b[00m\n",
"[02:24:29\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mPerforming CiC done.\u001b[00m\n",
"[02:24:29\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mPerforming CiC reduction...\u001b[00m\n",
"[02:24:29\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x1489b0000b60 for threadedDensity[1] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:29\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x1488e8000b60 for threadedDensity[2] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:29\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x1489a0000b60 for threadedDensity[3] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:29\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x1489b8000b60 for threadedDensity[4] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:29\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x1488d0000b60 for threadedDensity[5] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:29\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x1488e0000b60 for threadedDensity[6] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:29\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148970000b60 for threadedDensity[7] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:29\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148908000b60 for threadedDensity[8] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:29\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148950000b60 for threadedDensity[9] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:29\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148968000b60 for threadedDensity[10] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:29\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148980000b60 for threadedDensity[11] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:29\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148920000b60 for threadedDensity[12] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:29\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148960000b60 for threadedDensity[13] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:29\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148930000b60 for threadedDensity[14] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:29\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148918000b60 for threadedDensity[15] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:29\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148900000b60 for threadedDensity[16] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:29\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x1488dc000b60 for threadedDensity[17] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:29\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148938000b60 for threadedDensity[18] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:29\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x1488f8000b60 for threadedDensity[19] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:29\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148928000b60 for threadedDensity[20] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:29\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148990000b60 for threadedDensity[21] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:29\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148958000b60 for threadedDensity[22] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:29\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148910000b60 for threadedDensity[23] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:29\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x1488f0000b60 for threadedDensity[24] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:29\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148998000b60 for threadedDensity[25] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:29\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148978000b60 for threadedDensity[26] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:29\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148940000b60 for threadedDensity[27] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:29\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148988000b60 for threadedDensity[28] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:29\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x1488d8000b60 for threadedDensity[29] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:29\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x1489a8000b60 for threadedDensity[30] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:29\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148948000b60 for threadedDensity[31] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:29\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mPerforming CiC reduction done.\u001b[00m\n",
"[02:24:29\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Getting density contrast (using 32 cores and 32 arrays, parallel routine 1) done.\n",
"[02:24:29\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Getting gravitational potential, periodic boundary conditions (using 32 cores)...\n",
"[02:24:29\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (1081344 bytes) at 0x55cb08d7b1a0 for AUX in \u001b[38;5;227mpoisson_solvers.c\u001b[0;36m:\u001b[38;5;192msolve_poisson_DFT\u001b[0;36m:\u001b[0;32m106\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:29\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08d7b1a0 for AUX in \u001b[38;5;227mpoisson_solvers.c\u001b[0;36m:\u001b[38;5;192msolve_poisson_DFT\u001b[0;36m:\u001b[0;32m116\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:29\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Getting gravitational potential, periodic boundary conditions (using 32 cores) done.\n",
"[02:24:29\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Acceleration loop, direction 0...\n",
"[02:24:29\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Acceleration loop, direction 0 done.\n",
"[02:24:29\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Acceleration loop, direction 1...\n",
"[02:24:29\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Acceleration loop, direction 1 done.\n",
"[02:24:29\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Acceleration loop, direction 2...\n",
"[02:24:29\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Acceleration loop, direction 2 done.\n",
"[02:24:29\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08c7b190 for g_pad in \u001b[38;5;227mdiagnostic.c\u001b[0;36m:\u001b[38;5;192mcompute_force_on_particle\u001b[0;36m:\u001b[0;32m70\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:29\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08c1b190 for xwopb in \u001b[38;5;227mdiagnostic.c\u001b[0;36m:\u001b[38;5;192mrun_force_diagnostic\u001b[0;36m:\u001b[0;32m227\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:29\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]====|Computing force for particle pair 2, bin 9: [0.106, 0.179] done. Total: 32 / max 60 pairs. Trials 2630963 / max 100000000.\n",
"[02:24:29\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]====|Computing force for particle pair 3, bin 9: [0.106, 0.179]. Total: 33 / max 60 pairs...\n",
"[02:24:29\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated memory (393204 bytes) at 0x55cb08c1b190 for xwopb in \u001b[38;5;227mdiagnostic.c\u001b[0;36m:\u001b[38;5;192mrun_force_diagnostic\u001b[0;36m:\u001b[0;32m207\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:29\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated memory (1048576 bytes) at 0x55cb08c7b190 for g_pad in \u001b[38;5;227mdiagnostic.c\u001b[0;36m:\u001b[38;5;192mcompute_force_on_particle\u001b[0;36m:\u001b[0;32m32\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:29\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mdp3m0=1.000000\u001b[00m\n",
"[02:24:29\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mdp3m1=1.000000\u001b[00m\n",
"[02:24:29\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mdp3m2=1.000000\u001b[00m\n",
"[02:24:29\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mGiven the available memory, 4095 threads could be allocated and 32 threads will be used in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel\u001b[0;36m:\u001b[0;32m347\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:29\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mGiven the available memory, 4095 threads could be allocated and 32 threads will be used in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m73\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:29\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Getting density contrast (using 32 cores and 32 arrays, parallel routine 1)...\n",
"[02:24:29\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mPerforming CiC binning...\u001b[00m\n",
"[02:24:29\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 0...\u001b[00m\n",
"[02:24:29\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148950000b60 for threadedDensity[9] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:29\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 9...\u001b[00m\n",
"[02:24:29\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148908000b60 for threadedDensity[8] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:29\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148960000b60 for threadedDensity[13] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:29\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 8...\u001b[00m\n",
"[02:24:29\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 13...\u001b[00m\n",
"[02:24:29\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148958000b60 for threadedDensity[22] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:29\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148900000b60 for threadedDensity[16] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:29\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 22...\u001b[00m\n",
"[02:24:29\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1488e0000b60 for threadedDensity[6] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:29\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1488d8000b60 for threadedDensity[29] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:29\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 6...\u001b[00m\n",
"[02:24:29\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 29...\u001b[00m\n",
"[02:24:29\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 16...\u001b[00m\n",
"[02:24:29\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148910000b60 for threadedDensity[23] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:29\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148928000b60 for threadedDensity[20] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:29\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1489a0000b60 for threadedDensity[3] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:29\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 20...\u001b[00m\n",
"[02:24:29\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 3...\u001b[00m\n",
"[02:24:29\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1489b0000b60 for threadedDensity[1] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:29\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148968000b60 for threadedDensity[10] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:29\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 1...\u001b[00m\n",
"[02:24:29\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1488e8000b60 for threadedDensity[2] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:29\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 23...\u001b[00m\n",
"[02:24:29\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 2...\u001b[00m\n",
"[02:24:29\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148918000b60 for threadedDensity[15] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:29\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 10...\u001b[00m\n",
"[02:24:29\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 15...\u001b[00m\n",
"[02:24:29\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148930000b60 for threadedDensity[14] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:29\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148978000b60 for threadedDensity[26] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:29\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1488dc000b60 for threadedDensity[17] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:29\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 26...\u001b[00m\n",
"[02:24:29\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 17...\u001b[00m\n",
"[02:24:29\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 14...\u001b[00m\n",
"[02:24:29\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148938000b60 for threadedDensity[18] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:29\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148998000b60 for threadedDensity[25] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:29\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148920000b60 for threadedDensity[12] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:29\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 25...\u001b[00m\n",
"[02:24:29\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 12...\u001b[00m\n",
"[02:24:29\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148948000b60 for threadedDensity[31] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:29\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 18...\u001b[00m\n",
"[02:24:29\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 31...\u001b[00m\n",
"[02:24:29\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148980000b60 for threadedDensity[11] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:29\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1488f0000b60 for threadedDensity[24] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:29\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 11...\u001b[00m\n",
"[02:24:29\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 24...\u001b[00m\n",
"[02:24:29\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1489b8000b60 for threadedDensity[4] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:29\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148990000b60 for threadedDensity[21] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:29\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148940000b60 for threadedDensity[27] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:29\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 21...\u001b[00m\n",
"[02:24:29\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 27...\u001b[00m\n",
"[02:24:29\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 4...\u001b[00m\n",
"[02:24:29\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1488f8000b60 for threadedDensity[19] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:29\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1489a8000b60 for threadedDensity[30] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:29\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148970000b60 for threadedDensity[7] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:29\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 30...\u001b[00m\n",
"[02:24:29\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 7...\u001b[00m\n",
"[02:24:29\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148988000b60 for threadedDensity[28] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:29\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1488d0000b60 for threadedDensity[5] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:29\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 28...\u001b[00m\n",
"[02:24:29\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 5...\u001b[00m\n",
"[02:24:29\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 19...\u001b[00m\n",
"[02:24:29\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 14 done.\u001b[00m\n",
"[02:24:29\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 18 done.\u001b[00m\n",
"[02:24:29\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 6 done.\u001b[00m\n",
"[02:24:29\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 29 done.\u001b[00m\n",
"[02:24:29\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 31 done.\u001b[00m\n",
"[02:24:29\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 22 done.\u001b[00m\n",
"[02:24:29\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 8 done.\u001b[00m\n",
"[02:24:29\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 13 done.\u001b[00m\n",
"[02:24:29\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 1 done.\u001b[00m\n",
"[02:24:29\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 16 done.\u001b[00m\n",
"[02:24:29\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 25 done.\u001b[00m\n",
"[02:24:29\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 12 done.\u001b[00m\n",
"[02:24:29\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 15 done.\u001b[00m\n",
"[02:24:29\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 10 done.\u001b[00m\n",
"[02:24:29\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 2 done.\u001b[00m\n",
"[02:24:29\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 23 done.\u001b[00m\n",
"[02:24:29\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 3 done.\u001b[00m\n",
"[02:24:29\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 20 done.\u001b[00m\n",
"[02:24:29\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 11 done.\u001b[00m\n",
"[02:24:29\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 24 done.\u001b[00m\n",
"[02:24:29\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 28 done.\u001b[00m\n",
"[02:24:29\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 5 done.\u001b[00m\n",
"[02:24:29\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 0 done.\u001b[00m\n",
"[02:24:29\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 4 done.\u001b[00m\n",
"[02:24:29\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 17 done.\u001b[00m\n",
"[02:24:29\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 26 done.\u001b[00m\n",
"[02:24:29\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 21 done.\u001b[00m\n",
"[02:24:29\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 27 done.\u001b[00m\n",
"[02:24:29\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 30 done.\u001b[00m\n",
"[02:24:29\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 7 done.\u001b[00m\n",
"[02:24:29\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 9 done.\u001b[00m\n",
"[02:24:29\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 19 done.\u001b[00m\n",
"[02:24:29\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mPerforming CiC done.\u001b[00m\n",
"[02:24:29\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mPerforming CiC reduction...\u001b[00m\n",
"[02:24:29\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x1489b0000b60 for threadedDensity[1] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:29\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x1488e8000b60 for threadedDensity[2] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:29\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x1489a0000b60 for threadedDensity[3] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:29\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x1489b8000b60 for threadedDensity[4] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:29\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x1488d0000b60 for threadedDensity[5] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:29\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x1488e0000b60 for threadedDensity[6] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:29\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148970000b60 for threadedDensity[7] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:29\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148908000b60 for threadedDensity[8] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:29\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148950000b60 for threadedDensity[9] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:29\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148968000b60 for threadedDensity[10] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:29\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148980000b60 for threadedDensity[11] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:29\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148920000b60 for threadedDensity[12] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:29\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148960000b60 for threadedDensity[13] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:29\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148930000b60 for threadedDensity[14] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:29\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148918000b60 for threadedDensity[15] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:29\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148900000b60 for threadedDensity[16] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:29\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x1488dc000b60 for threadedDensity[17] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:29\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148938000b60 for threadedDensity[18] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:29\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x1488f8000b60 for threadedDensity[19] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:29\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148928000b60 for threadedDensity[20] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:29\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148990000b60 for threadedDensity[21] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:29\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148958000b60 for threadedDensity[22] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:29\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148910000b60 for threadedDensity[23] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:29\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x1488f0000b60 for threadedDensity[24] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:29\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148998000b60 for threadedDensity[25] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:29\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148978000b60 for threadedDensity[26] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:29\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148940000b60 for threadedDensity[27] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:29\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148988000b60 for threadedDensity[28] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:29\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x1488d8000b60 for threadedDensity[29] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:29\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x1489a8000b60 for threadedDensity[30] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:29\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148948000b60 for threadedDensity[31] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:29\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mPerforming CiC reduction done.\u001b[00m\n",
"[02:24:29\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Getting density contrast (using 32 cores and 32 arrays, parallel routine 1) done.\n",
"[02:24:29\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Getting gravitational potential, periodic boundary conditions (using 32 cores)...\n",
"[02:24:29\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (1081344 bytes) at 0x55cb08d7b1a0 for AUX in \u001b[38;5;227mpoisson_solvers.c\u001b[0;36m:\u001b[38;5;192msolve_poisson_DFT\u001b[0;36m:\u001b[0;32m106\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:29\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08d7b1a0 for AUX in \u001b[38;5;227mpoisson_solvers.c\u001b[0;36m:\u001b[38;5;192msolve_poisson_DFT\u001b[0;36m:\u001b[0;32m116\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:29\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Getting gravitational potential, periodic boundary conditions (using 32 cores) done.\n",
"[02:24:29\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Acceleration loop, direction 0...\n",
"[02:24:29\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Acceleration loop, direction 0 done.\n",
"[02:24:29\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Acceleration loop, direction 1...\n",
"[02:24:29\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Acceleration loop, direction 1 done.\n",
"[02:24:29\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Acceleration loop, direction 2...\n",
"[02:24:29\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Acceleration loop, direction 2 done.\n",
"[02:24:29\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08c7b190 for g_pad in \u001b[38;5;227mdiagnostic.c\u001b[0;36m:\u001b[38;5;192mcompute_force_on_particle\u001b[0;36m:\u001b[0;32m70\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:29\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08c1b190 for xwopb in \u001b[38;5;227mdiagnostic.c\u001b[0;36m:\u001b[38;5;192mrun_force_diagnostic\u001b[0;36m:\u001b[0;32m227\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:29\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]====|Computing force for particle pair 3, bin 9: [0.106, 0.179] done. Total: 33 / max 60 pairs. Trials 4118068 / max 100000000.\n",
"[02:24:29\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]====|Computing force for particle pair 1, bin 8: [0.063, 0.106]. Total: 34 / max 60 pairs...\n",
"[02:24:29\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated memory (393204 bytes) at 0x55cb08c1b190 for xwopb in \u001b[38;5;227mdiagnostic.c\u001b[0;36m:\u001b[38;5;192mrun_force_diagnostic\u001b[0;36m:\u001b[0;32m207\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:29\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated memory (1048576 bytes) at 0x55cb08c7b190 for g_pad in \u001b[38;5;227mdiagnostic.c\u001b[0;36m:\u001b[38;5;192mcompute_force_on_particle\u001b[0;36m:\u001b[0;32m32\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:29\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mdp3m0=1.000000\u001b[00m\n",
"[02:24:29\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mdp3m1=1.000000\u001b[00m\n",
"[02:24:29\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mdp3m2=1.000000\u001b[00m\n",
"[02:24:29\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mGiven the available memory, 4095 threads could be allocated and 32 threads will be used in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel\u001b[0;36m:\u001b[0;32m347\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:29\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mGiven the available memory, 4095 threads could be allocated and 32 threads will be used in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m73\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:29\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Getting density contrast (using 32 cores and 32 arrays, parallel routine 1)...\n",
"[02:24:29\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mPerforming CiC binning...\u001b[00m\n",
"[02:24:29\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 0...\u001b[00m\n",
"[02:24:29\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148950000b60 for threadedDensity[9] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:29\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148928000b60 for threadedDensity[20] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:29\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 9...\u001b[00m\n",
"[02:24:29\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 20...\u001b[00m\n",
"[02:24:29\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148970000b60 for threadedDensity[7] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:29\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148990000b60 for threadedDensity[21] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:29\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148940000b60 for threadedDensity[27] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:29\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 21...\u001b[00m\n",
"[02:24:29\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 27...\u001b[00m\n",
"[02:24:29\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148908000b60 for threadedDensity[8] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:29\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148958000b60 for threadedDensity[22] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:29\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 8...\u001b[00m\n",
"[02:24:29\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 22...\u001b[00m\n",
"[02:24:29\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148900000b60 for threadedDensity[16] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:29\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1488e0000b60 for threadedDensity[6] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:29\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1488d8000b60 for threadedDensity[29] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:29\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 6...\u001b[00m\n",
"[02:24:29\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 29...\u001b[00m\n",
"[02:24:29\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148968000b60 for threadedDensity[10] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:29\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148918000b60 for threadedDensity[15] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:29\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 10...\u001b[00m\n",
"[02:24:29\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 15...\u001b[00m\n",
"[02:24:29\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148998000b60 for threadedDensity[25] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:29\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148948000b60 for threadedDensity[31] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:29\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 25...\u001b[00m\n",
"[02:24:29\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 31...\u001b[00m\n",
"[02:24:29\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 16...\u001b[00m\n",
"[02:24:29\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148930000b60 for threadedDensity[14] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:29\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148938000b60 for threadedDensity[18] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:29\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 14...\u001b[00m\n",
"[02:24:29\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 18...\u001b[00m\n",
"[02:24:29\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148910000b60 for threadedDensity[23] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:29\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148920000b60 for threadedDensity[12] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:29\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 23...\u001b[00m\n",
"[02:24:29\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 12...\u001b[00m\n",
"[02:24:29\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148980000b60 for threadedDensity[11] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:29\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1488f0000b60 for threadedDensity[24] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:29\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 11...\u001b[00m\n",
"[02:24:29\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 7...\u001b[00m\n",
"[02:24:29\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1489a8000b60 for threadedDensity[30] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:29\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148960000b60 for threadedDensity[13] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:29\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1489a0000b60 for threadedDensity[3] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:29\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 13...\u001b[00m\n",
"[02:24:29\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 3...\u001b[00m\n",
"[02:24:29\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 24...\u001b[00m\n",
"[02:24:29\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1489b8000b60 for threadedDensity[4] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:29\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1488d0000b60 for threadedDensity[5] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:29\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148988000b60 for threadedDensity[28] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:29\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 5...\u001b[00m\n",
"[02:24:29\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 28...\u001b[00m\n",
"[02:24:29\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1488dc000b60 for threadedDensity[17] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:29\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148978000b60 for threadedDensity[26] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:29\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 17...\u001b[00m\n",
"[02:24:29\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 26...\u001b[00m\n",
"[02:24:29\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 4...\u001b[00m\n",
"[02:24:29\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 30...\u001b[00m\n",
"[02:24:29\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1489b0000b60 for threadedDensity[1] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:29\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 1...\u001b[00m\n",
"[02:24:29\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1488e8000b60 for threadedDensity[2] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:29\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 2...\u001b[00m\n",
"[02:24:29\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1488f8000b60 for threadedDensity[19] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:29\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 19...\u001b[00m\n",
"[02:24:29\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 4 done.\u001b[00m\n",
"[02:24:29\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 19 done.\u001b[00m\n",
"[02:24:29\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 25 done.\u001b[00m\n",
"[02:24:29\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 31 done.\u001b[00m\n",
"[02:24:29\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 1 done.\u001b[00m\n",
"[02:24:29\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 16 done.\u001b[00m\n",
"[02:24:29\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 29 done.\u001b[00m\n",
"[02:24:29\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 6 done.\u001b[00m\n",
"[02:24:29\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 8 done.\u001b[00m\n",
"[02:24:29\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 22 done.\u001b[00m\n",
"[02:24:29\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 12 done.\u001b[00m\n",
"[02:24:29\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 14 done.\u001b[00m\n",
"[02:24:29\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 18 done.\u001b[00m\n",
"[02:24:29\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 23 done.\u001b[00m\n",
"[02:24:29\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 2 done.\u001b[00m\n",
"[02:24:29\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 15 done.\u001b[00m\n",
"[02:24:29\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 10 done.\u001b[00m\n",
"[02:24:29\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 3 done.\u001b[00m\n",
"[02:24:29\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 13 done.\u001b[00m\n",
"[02:24:29\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 11 done.\u001b[00m\n",
"[02:24:29\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 24 done.\u001b[00m\n",
"[02:24:29\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 28 done.\u001b[00m\n",
"[02:24:29\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 5 done.\u001b[00m\n",
"[02:24:29\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 21 done.\u001b[00m\n",
"[02:24:29\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 27 done.\u001b[00m\n",
"[02:24:29\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 26 done.\u001b[00m\n",
"[02:24:29\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 17 done.\u001b[00m\n",
"[02:24:29\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 20 done.\u001b[00m\n",
"[02:24:29\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 9 done.\u001b[00m\n",
"[02:24:29\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 30 done.\u001b[00m\n",
"[02:24:29\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 7 done.\u001b[00m\n",
"[02:24:29\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 0 done.\u001b[00m\n",
"[02:24:29\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mPerforming CiC done.\u001b[00m\n",
"[02:24:29\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mPerforming CiC reduction...\u001b[00m\n",
"[02:24:29\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x1489b0000b60 for threadedDensity[1] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:29\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x1488e8000b60 for threadedDensity[2] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:29\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x1489a0000b60 for threadedDensity[3] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:29\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x1489b8000b60 for threadedDensity[4] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:29\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x1488d0000b60 for threadedDensity[5] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:29\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x1488e0000b60 for threadedDensity[6] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:29\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148970000b60 for threadedDensity[7] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:29\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148908000b60 for threadedDensity[8] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:29\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148950000b60 for threadedDensity[9] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:29\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148968000b60 for threadedDensity[10] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:29\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148980000b60 for threadedDensity[11] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:29\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148920000b60 for threadedDensity[12] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:29\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148960000b60 for threadedDensity[13] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:29\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148930000b60 for threadedDensity[14] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:29\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148918000b60 for threadedDensity[15] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:29\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148900000b60 for threadedDensity[16] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:29\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x1488dc000b60 for threadedDensity[17] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:29\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148938000b60 for threadedDensity[18] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:29\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x1488f8000b60 for threadedDensity[19] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:29\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148928000b60 for threadedDensity[20] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:29\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148990000b60 for threadedDensity[21] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:29\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148958000b60 for threadedDensity[22] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:29\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148910000b60 for threadedDensity[23] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:29\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x1488f0000b60 for threadedDensity[24] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:29\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148998000b60 for threadedDensity[25] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:29\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148978000b60 for threadedDensity[26] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:29\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148940000b60 for threadedDensity[27] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:29\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148988000b60 for threadedDensity[28] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:29\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x1488d8000b60 for threadedDensity[29] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:29\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x1489a8000b60 for threadedDensity[30] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:29\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148948000b60 for threadedDensity[31] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:29\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mPerforming CiC reduction done.\u001b[00m\n",
"[02:24:29\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Getting density contrast (using 32 cores and 32 arrays, parallel routine 1) done.\n",
"[02:24:29\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Getting gravitational potential, periodic boundary conditions (using 32 cores)...\n",
"[02:24:29\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (1081344 bytes) at 0x55cb08d7b1a0 for AUX in \u001b[38;5;227mpoisson_solvers.c\u001b[0;36m:\u001b[38;5;192msolve_poisson_DFT\u001b[0;36m:\u001b[0;32m106\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:29\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08d7b1a0 for AUX in \u001b[38;5;227mpoisson_solvers.c\u001b[0;36m:\u001b[38;5;192msolve_poisson_DFT\u001b[0;36m:\u001b[0;32m116\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:29\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Getting gravitational potential, periodic boundary conditions (using 32 cores) done.\n",
"[02:24:29\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Acceleration loop, direction 0...\n",
"[02:24:29\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Acceleration loop, direction 0 done.\n",
"[02:24:29\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Acceleration loop, direction 1...\n",
"[02:24:29\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Acceleration loop, direction 1 done.\n",
"[02:24:29\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Acceleration loop, direction 2...\n",
"[02:24:29\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Acceleration loop, direction 2 done.\n",
"[02:24:29\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08c7b190 for g_pad in \u001b[38;5;227mdiagnostic.c\u001b[0;36m:\u001b[38;5;192mcompute_force_on_particle\u001b[0;36m:\u001b[0;32m70\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:29\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08c1b190 for xwopb in \u001b[38;5;227mdiagnostic.c\u001b[0;36m:\u001b[38;5;192mrun_force_diagnostic\u001b[0;36m:\u001b[0;32m227\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:29\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]====|Computing force for particle pair 1, bin 8: [0.063, 0.106] done. Total: 34 / max 60 pairs. Trials 6248734 / max 100000000.\n",
"[02:24:30\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]====|Computing force for particle pair 2, bin 8: [0.063, 0.106]. Total: 35 / max 60 pairs...\n",
"[02:24:30\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated memory (393204 bytes) at 0x55cb08c1b190 for xwopb in \u001b[38;5;227mdiagnostic.c\u001b[0;36m:\u001b[38;5;192mrun_force_diagnostic\u001b[0;36m:\u001b[0;32m207\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:30\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated memory (1048576 bytes) at 0x55cb08c7b190 for g_pad in \u001b[38;5;227mdiagnostic.c\u001b[0;36m:\u001b[38;5;192mcompute_force_on_particle\u001b[0;36m:\u001b[0;32m32\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:30\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mdp3m0=1.000000\u001b[00m\n",
"[02:24:30\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mdp3m1=1.000000\u001b[00m\n",
"[02:24:30\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mdp3m2=1.000000\u001b[00m\n",
"[02:24:30\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mGiven the available memory, 4095 threads could be allocated and 32 threads will be used in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel\u001b[0;36m:\u001b[0;32m347\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:30\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mGiven the available memory, 4095 threads could be allocated and 32 threads will be used in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m73\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:30\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Getting density contrast (using 32 cores and 32 arrays, parallel routine 1)...\n",
"[02:24:30\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mPerforming CiC binning...\u001b[00m\n",
"[02:24:30\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 0...\u001b[00m\n",
"[02:24:30\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148950000b60 for threadedDensity[9] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:30\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 9...\u001b[00m\n",
"[02:24:30\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148908000b60 for threadedDensity[8] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:30\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148958000b60 for threadedDensity[22] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:30\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 8...\u001b[00m\n",
"[02:24:30\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 22...\u001b[00m\n",
"[02:24:30\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148978000b60 for threadedDensity[26] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:30\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148998000b60 for threadedDensity[25] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:30\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148900000b60 for threadedDensity[16] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:30\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 25...\u001b[00m\n",
"[02:24:30\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148918000b60 for threadedDensity[15] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:30\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148968000b60 for threadedDensity[10] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:30\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 15...\u001b[00m\n",
"[02:24:30\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 10...\u001b[00m\n",
"[02:24:30\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148948000b60 for threadedDensity[31] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:30\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1488e0000b60 for threadedDensity[6] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:30\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 31...\u001b[00m\n",
"[02:24:30\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 6...\u001b[00m\n",
"[02:24:30\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 16...\u001b[00m\n",
"[02:24:30\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1489b0000b60 for threadedDensity[1] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:30\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1489a8000b60 for threadedDensity[30] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:30\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148920000b60 for threadedDensity[12] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:30\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 30...\u001b[00m\n",
"[02:24:30\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 12...\u001b[00m\n",
"[02:24:30\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 1...\u001b[00m\n",
"[02:24:30\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1488d8000b60 for threadedDensity[29] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:30\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148930000b60 for threadedDensity[14] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:30\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148938000b60 for threadedDensity[18] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:30\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 14...\u001b[00m\n",
"[02:24:30\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 18...\u001b[00m\n",
"[02:24:30\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 29...\u001b[00m\n",
"[02:24:30\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1488e8000b60 for threadedDensity[2] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:30\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148910000b60 for threadedDensity[23] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:30\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 2...\u001b[00m\n",
"[02:24:30\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 23...\u001b[00m\n",
"[02:24:30\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1489a0000b60 for threadedDensity[3] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:30\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148960000b60 for threadedDensity[13] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:30\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 3...\u001b[00m\n",
"[02:24:30\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 13...\u001b[00m\n",
"[02:24:30\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1489b8000b60 for threadedDensity[4] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:30\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148980000b60 for threadedDensity[11] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:30\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 4...\u001b[00m\n",
"[02:24:30\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 11...\u001b[00m\n",
"[02:24:30\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1488f0000b60 for threadedDensity[24] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:30\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1488dc000b60 for threadedDensity[17] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:30\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 26...\u001b[00m\n",
"[02:24:30\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 17...\u001b[00m\n",
"[02:24:30\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 24...\u001b[00m\n",
"[02:24:30\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148990000b60 for threadedDensity[21] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:30\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148940000b60 for threadedDensity[27] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:30\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 21...\u001b[00m\n",
"[02:24:30\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 27...\u001b[00m\n",
"[02:24:30\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1488d0000b60 for threadedDensity[5] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:30\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148988000b60 for threadedDensity[28] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:30\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 5...\u001b[00m\n",
"[02:24:30\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 28...\u001b[00m\n",
"[02:24:30\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1488f8000b60 for threadedDensity[19] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:30\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148970000b60 for threadedDensity[7] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:30\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148928000b60 for threadedDensity[20] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:30\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 7...\u001b[00m\n",
"[02:24:30\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 20...\u001b[00m\n",
"[02:24:30\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 19...\u001b[00m\n",
"[02:24:30\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 31 done.\u001b[00m\n",
"[02:24:30\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 25 done.\u001b[00m\n",
"[02:24:30\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 29 done.\u001b[00m\n",
"[02:24:30\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 6 done.\u001b[00m\n",
"[02:24:30\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 1 done.\u001b[00m\n",
"[02:24:30\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 16 done.\u001b[00m\n",
"[02:24:30\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 22 done.\u001b[00m\n",
"[02:24:30\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 8 done.\u001b[00m\n",
"[02:24:30\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 23 done.\u001b[00m\n",
"[02:24:30\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 2 done.\u001b[00m\n",
"[02:24:30\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 18 done.\u001b[00m\n",
"[02:24:30\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 14 done.\u001b[00m\n",
"[02:24:30\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 30 done.\u001b[00m\n",
"[02:24:30\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 12 done.\u001b[00m\n",
"[02:24:30\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 10 done.\u001b[00m\n",
"[02:24:30\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 15 done.\u001b[00m\n",
"[02:24:30\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 3 done.\u001b[00m\n",
"[02:24:30\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 13 done.\u001b[00m\n",
"[02:24:30\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 24 done.\u001b[00m\n",
"[02:24:30\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 0 done.\u001b[00m\n",
"[02:24:30\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 27 done.\u001b[00m\n",
"[02:24:30\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 21 done.\u001b[00m\n",
"[02:24:30\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 11 done.\u001b[00m\n",
"[02:24:30\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 4 done.\u001b[00m\n",
"[02:24:30\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 17 done.\u001b[00m\n",
"[02:24:30\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 26 done.\u001b[00m\n",
"[02:24:30\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 28 done.\u001b[00m\n",
"[02:24:30\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 5 done.\u001b[00m\n",
"[02:24:30\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 7 done.\u001b[00m\n",
"[02:24:30\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 20 done.\u001b[00m\n",
"[02:24:30\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 9 done.\u001b[00m\n",
"[02:24:30\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 19 done.\u001b[00m\n",
"[02:24:30\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mPerforming CiC done.\u001b[00m\n",
"[02:24:30\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mPerforming CiC reduction...\u001b[00m\n",
"[02:24:30\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x1489b0000b60 for threadedDensity[1] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:30\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x1488e8000b60 for threadedDensity[2] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:30\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x1489a0000b60 for threadedDensity[3] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:30\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x1489b8000b60 for threadedDensity[4] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:30\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x1488d0000b60 for threadedDensity[5] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:30\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x1488e0000b60 for threadedDensity[6] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:30\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148970000b60 for threadedDensity[7] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:30\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148908000b60 for threadedDensity[8] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:30\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148950000b60 for threadedDensity[9] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:30\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148968000b60 for threadedDensity[10] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:30\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148980000b60 for threadedDensity[11] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:30\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148920000b60 for threadedDensity[12] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:30\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148960000b60 for threadedDensity[13] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:30\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148930000b60 for threadedDensity[14] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:30\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148918000b60 for threadedDensity[15] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:30\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148900000b60 for threadedDensity[16] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:30\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x1488dc000b60 for threadedDensity[17] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:30\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148938000b60 for threadedDensity[18] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:30\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x1488f8000b60 for threadedDensity[19] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:30\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148928000b60 for threadedDensity[20] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:30\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148990000b60 for threadedDensity[21] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:30\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148958000b60 for threadedDensity[22] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:30\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148910000b60 for threadedDensity[23] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:30\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x1488f0000b60 for threadedDensity[24] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:30\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148998000b60 for threadedDensity[25] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:30\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148978000b60 for threadedDensity[26] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:30\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148940000b60 for threadedDensity[27] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:30\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148988000b60 for threadedDensity[28] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:30\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x1488d8000b60 for threadedDensity[29] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:30\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x1489a8000b60 for threadedDensity[30] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:30\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148948000b60 for threadedDensity[31] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:30\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mPerforming CiC reduction done.\u001b[00m\n",
"[02:24:30\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Getting density contrast (using 32 cores and 32 arrays, parallel routine 1) done.\n",
"[02:24:30\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Getting gravitational potential, periodic boundary conditions (using 32 cores)...\n",
"[02:24:30\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (1081344 bytes) at 0x55cb08d7b1a0 for AUX in \u001b[38;5;227mpoisson_solvers.c\u001b[0;36m:\u001b[38;5;192msolve_poisson_DFT\u001b[0;36m:\u001b[0;32m106\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:30\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08d7b1a0 for AUX in \u001b[38;5;227mpoisson_solvers.c\u001b[0;36m:\u001b[38;5;192msolve_poisson_DFT\u001b[0;36m:\u001b[0;32m116\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:30\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Getting gravitational potential, periodic boundary conditions (using 32 cores) done.\n",
"[02:24:30\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Acceleration loop, direction 0...\n",
"[02:24:30\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Acceleration loop, direction 0 done.\n",
"[02:24:30\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Acceleration loop, direction 1...\n",
"[02:24:30\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Acceleration loop, direction 1 done.\n",
"[02:24:30\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Acceleration loop, direction 2...\n",
"[02:24:30\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Acceleration loop, direction 2 done.\n",
"[02:24:30\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08c7b190 for g_pad in \u001b[38;5;227mdiagnostic.c\u001b[0;36m:\u001b[38;5;192mcompute_force_on_particle\u001b[0;36m:\u001b[0;32m70\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:30\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08c1b190 for xwopb in \u001b[38;5;227mdiagnostic.c\u001b[0;36m:\u001b[38;5;192mrun_force_diagnostic\u001b[0;36m:\u001b[0;32m227\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:30\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]====|Computing force for particle pair 2, bin 8: [0.063, 0.106] done. Total: 35 / max 60 pairs. Trials 9642382 / max 100000000.\n",
"[02:24:31\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]====|Computing force for particle pair 3, bin 8: [0.063, 0.106]. Total: 36 / max 60 pairs...\n",
"[02:24:31\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated memory (393204 bytes) at 0x55cb08c1b190 for xwopb in \u001b[38;5;227mdiagnostic.c\u001b[0;36m:\u001b[38;5;192mrun_force_diagnostic\u001b[0;36m:\u001b[0;32m207\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:31\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated memory (1048576 bytes) at 0x55cb08c7b190 for g_pad in \u001b[38;5;227mdiagnostic.c\u001b[0;36m:\u001b[38;5;192mcompute_force_on_particle\u001b[0;36m:\u001b[0;32m32\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:31\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mdp3m0=1.000000\u001b[00m\n",
"[02:24:31\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mdp3m1=1.000000\u001b[00m\n",
"[02:24:31\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mdp3m2=1.000000\u001b[00m\n",
"[02:24:31\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mGiven the available memory, 4095 threads could be allocated and 32 threads will be used in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel\u001b[0;36m:\u001b[0;32m347\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:31\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mGiven the available memory, 4095 threads could be allocated and 32 threads will be used in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m73\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:31\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Getting density contrast (using 32 cores and 32 arrays, parallel routine 1)...\n",
"[02:24:31\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mPerforming CiC binning...\u001b[00m\n",
"[02:24:31\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 0...\u001b[00m\n",
"[02:24:31\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148950000b60 for threadedDensity[9] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:31\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148980000b60 for threadedDensity[11] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:31\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 9...\u001b[00m\n",
"[02:24:31\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 11...\u001b[00m\n",
"[02:24:31\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148990000b60 for threadedDensity[21] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:31\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148970000b60 for threadedDensity[7] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:31\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 21...\u001b[00m\n",
"[02:24:31\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 7...\u001b[00m\n",
"[02:24:31\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1488d0000b60 for threadedDensity[5] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:31\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1489a0000b60 for threadedDensity[3] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:31\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 5...\u001b[00m\n",
"[02:24:31\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 3...\u001b[00m\n",
"[02:24:31\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148978000b60 for threadedDensity[26] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:31\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148908000b60 for threadedDensity[8] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:31\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1488dc000b60 for threadedDensity[17] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:31\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 26...\u001b[00m\n",
"[02:24:31\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 17...\u001b[00m\n",
"[02:24:31\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148928000b60 for threadedDensity[20] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:31\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1488e8000b60 for threadedDensity[2] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:31\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1488f8000b60 for threadedDensity[19] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:31\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 20...\u001b[00m\n",
"[02:24:31\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 19...\u001b[00m\n",
"[02:24:31\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148940000b60 for threadedDensity[27] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:31\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1488f0000b60 for threadedDensity[24] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:31\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 27...\u001b[00m\n",
"[02:24:31\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148988000b60 for threadedDensity[28] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:31\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 24...\u001b[00m\n",
"[02:24:31\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 28...\u001b[00m\n",
"[02:24:31\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 2...\u001b[00m\n",
"[02:24:31\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148918000b60 for threadedDensity[15] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:31\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148968000b60 for threadedDensity[10] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:31\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 10...\u001b[00m\n",
"[02:24:31\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 15...\u001b[00m\n",
"[02:24:31\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1488e0000b60 for threadedDensity[6] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:31\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 6...\u001b[00m\n",
"[02:24:31\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148930000b60 for threadedDensity[14] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:31\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 14...\u001b[00m\n",
"[02:24:31\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148900000b60 for threadedDensity[16] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:31\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1489b0000b60 for threadedDensity[1] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:31\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 16...\u001b[00m\n",
"[02:24:31\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 1...\u001b[00m\n",
"[02:24:31\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1489a8000b60 for threadedDensity[30] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:31\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148920000b60 for threadedDensity[12] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:31\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 30...\u001b[00m\n",
"[02:24:31\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 12...\u001b[00m\n",
"[02:24:31\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148910000b60 for threadedDensity[23] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:31\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 8...\u001b[00m\n",
"[02:24:31\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148958000b60 for threadedDensity[22] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:31\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 23...\u001b[00m\n",
"[02:24:31\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148938000b60 for threadedDensity[18] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:31\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148998000b60 for threadedDensity[25] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:31\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 18...\u001b[00m\n",
"[02:24:31\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 25...\u001b[00m\n",
"[02:24:31\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 22...\u001b[00m\n",
"[02:24:31\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1488d8000b60 for threadedDensity[29] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:31\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 29...\u001b[00m\n",
"[02:24:31\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148948000b60 for threadedDensity[31] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:31\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 31...\u001b[00m\n",
"[02:24:31\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148960000b60 for threadedDensity[13] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:31\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 13...\u001b[00m\n",
"[02:24:31\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1489b8000b60 for threadedDensity[4] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:31\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 4...\u001b[00m\n",
"[02:24:31\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 14 done.\u001b[00m\n",
"[02:24:31\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 18 done.\u001b[00m\n",
"[02:24:31\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 20 done.\u001b[00m\n",
"[02:24:31\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 7 done.\u001b[00m\n",
"[02:24:31\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 19 done.\u001b[00m\n",
"[02:24:31\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 9 done.\u001b[00m\n",
"[02:24:31\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 4 done.\u001b[00m\n",
"[02:24:31\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 11 done.\u001b[00m\n",
"[02:24:31\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 17 done.\u001b[00m\n",
"[02:24:31\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 26 done.\u001b[00m\n",
"[02:24:31\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 21 done.\u001b[00m\n",
"[02:24:31\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 27 done.\u001b[00m\n",
"[02:24:31\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 28 done.\u001b[00m\n",
"[02:24:31\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 5 done.\u001b[00m\n",
"[02:24:31\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 3 done.\u001b[00m\n",
"[02:24:31\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 13 done.\u001b[00m\n",
"[02:24:31\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 0 done.\u001b[00m\n",
"[02:24:31\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 24 done.\u001b[00m\n",
"[02:24:31\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 2 done.\u001b[00m\n",
"[02:24:31\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 23 done.\u001b[00m\n",
"[02:24:31\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 8 done.\u001b[00m\n",
"[02:24:31\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 22 done.\u001b[00m\n",
"[02:24:31\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 15 done.\u001b[00m\n",
"[02:24:31\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 10 done.\u001b[00m\n",
"[02:24:31\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 1 done.\u001b[00m\n",
"[02:24:31\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 16 done.\u001b[00m\n",
"[02:24:31\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 30 done.\u001b[00m\n",
"[02:24:31\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 12 done.\u001b[00m\n",
"[02:24:31\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 25 done.\u001b[00m\n",
"[02:24:31\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 31 done.\u001b[00m\n",
"[02:24:31\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 29 done.\u001b[00m\n",
"[02:24:31\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 6 done.\u001b[00m\n",
"[02:24:31\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mPerforming CiC done.\u001b[00m\n",
"[02:24:31\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mPerforming CiC reduction...\u001b[00m\n",
"[02:24:31\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x1489b0000b60 for threadedDensity[1] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:31\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x1488e8000b60 for threadedDensity[2] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:31\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x1489a0000b60 for threadedDensity[3] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:31\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x1489b8000b60 for threadedDensity[4] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:31\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x1488d0000b60 for threadedDensity[5] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:31\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x1488e0000b60 for threadedDensity[6] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:31\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148970000b60 for threadedDensity[7] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:31\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148908000b60 for threadedDensity[8] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:31\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148950000b60 for threadedDensity[9] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:31\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148968000b60 for threadedDensity[10] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:31\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148980000b60 for threadedDensity[11] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:31\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148920000b60 for threadedDensity[12] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:31\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148960000b60 for threadedDensity[13] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:31\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148930000b60 for threadedDensity[14] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:31\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148918000b60 for threadedDensity[15] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:31\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148900000b60 for threadedDensity[16] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:31\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x1488dc000b60 for threadedDensity[17] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:31\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148938000b60 for threadedDensity[18] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:31\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x1488f8000b60 for threadedDensity[19] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:31\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148928000b60 for threadedDensity[20] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:31\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148990000b60 for threadedDensity[21] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:31\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148958000b60 for threadedDensity[22] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:31\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148910000b60 for threadedDensity[23] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:31\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x1488f0000b60 for threadedDensity[24] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:31\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148998000b60 for threadedDensity[25] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:31\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148978000b60 for threadedDensity[26] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:31\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148940000b60 for threadedDensity[27] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:31\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148988000b60 for threadedDensity[28] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:31\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x1488d8000b60 for threadedDensity[29] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:31\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x1489a8000b60 for threadedDensity[30] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:31\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148948000b60 for threadedDensity[31] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:31\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mPerforming CiC reduction done.\u001b[00m\n",
"[02:24:31\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Getting density contrast (using 32 cores and 32 arrays, parallel routine 1) done.\n",
"[02:24:31\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Getting gravitational potential, periodic boundary conditions (using 32 cores)...\n",
"[02:24:31\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (1081344 bytes) at 0x55cb08d7b1a0 for AUX in \u001b[38;5;227mpoisson_solvers.c\u001b[0;36m:\u001b[38;5;192msolve_poisson_DFT\u001b[0;36m:\u001b[0;32m106\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:31\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08d7b1a0 for AUX in \u001b[38;5;227mpoisson_solvers.c\u001b[0;36m:\u001b[38;5;192msolve_poisson_DFT\u001b[0;36m:\u001b[0;32m116\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:31\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Getting gravitational potential, periodic boundary conditions (using 32 cores) done.\n",
"[02:24:31\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Acceleration loop, direction 0...\n",
"[02:24:31\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Acceleration loop, direction 0 done.\n",
"[02:24:31\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Acceleration loop, direction 1...\n",
"[02:24:31\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Acceleration loop, direction 1 done.\n",
"[02:24:31\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Acceleration loop, direction 2...\n",
"[02:24:31\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Acceleration loop, direction 2 done.\n",
"[02:24:31\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08c7b190 for g_pad in \u001b[38;5;227mdiagnostic.c\u001b[0;36m:\u001b[38;5;192mcompute_force_on_particle\u001b[0;36m:\u001b[0;32m70\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:31\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08c1b190 for xwopb in \u001b[38;5;227mdiagnostic.c\u001b[0;36m:\u001b[38;5;192mrun_force_diagnostic\u001b[0;36m:\u001b[0;32m227\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:31\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]====|Computing force for particle pair 3, bin 8: [0.063, 0.106] done. Total: 36 / max 60 pairs. Trials 16158664 / max 100000000.\n",
"[02:24:31\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]====|Computing force for particle pair 1, bin 7: [0.038, 0.063]. Total: 37 / max 60 pairs...\n",
"[02:24:31\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated memory (393204 bytes) at 0x55cb08c1b190 for xwopb in \u001b[38;5;227mdiagnostic.c\u001b[0;36m:\u001b[38;5;192mrun_force_diagnostic\u001b[0;36m:\u001b[0;32m207\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:31\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated memory (1048576 bytes) at 0x55cb08c7b190 for g_pad in \u001b[38;5;227mdiagnostic.c\u001b[0;36m:\u001b[38;5;192mcompute_force_on_particle\u001b[0;36m:\u001b[0;32m32\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:31\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mdp3m0=1.000000\u001b[00m\n",
"[02:24:31\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mdp3m1=1.000000\u001b[00m\n",
"[02:24:31\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mdp3m2=1.000000\u001b[00m\n",
"[02:24:31\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mGiven the available memory, 4095 threads could be allocated and 32 threads will be used in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel\u001b[0;36m:\u001b[0;32m347\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:31\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mGiven the available memory, 4095 threads could be allocated and 32 threads will be used in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m73\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:31\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Getting density contrast (using 32 cores and 32 arrays, parallel routine 1)...\n",
"[02:24:31\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mPerforming CiC binning...\u001b[00m\n",
"[02:24:31\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 0...\u001b[00m\n",
"[02:24:31\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148908000b60 for threadedDensity[8] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:31\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148958000b60 for threadedDensity[22] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:31\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 8...\u001b[00m\n",
"[02:24:31\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 22...\u001b[00m\n",
"[02:24:31\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148980000b60 for threadedDensity[11] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:31\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148970000b60 for threadedDensity[7] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:31\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1488f8000b60 for threadedDensity[19] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:31\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148950000b60 for threadedDensity[9] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:31\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 19...\u001b[00m\n",
"[02:24:31\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 9...\u001b[00m\n",
"[02:24:31\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148990000b60 for threadedDensity[21] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:31\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 7...\u001b[00m\n",
"[02:24:31\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 21...\u001b[00m\n",
"[02:24:31\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148978000b60 for threadedDensity[26] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:31\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1488dc000b60 for threadedDensity[17] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:31\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 26...\u001b[00m\n",
"[02:24:31\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 17...\u001b[00m\n",
"[02:24:31\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 11...\u001b[00m\n",
"[02:24:31\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1489b8000b60 for threadedDensity[4] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:31\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148988000b60 for threadedDensity[28] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:31\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1488d0000b60 for threadedDensity[5] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:31\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 28...\u001b[00m\n",
"[02:24:31\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 5...\u001b[00m\n",
"[02:24:31\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 4...\u001b[00m\n",
"[02:24:31\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1488f0000b60 for threadedDensity[24] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:31\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148940000b60 for threadedDensity[27] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:31\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148920000b60 for threadedDensity[12] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:31\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 27...\u001b[00m\n",
"[02:24:31\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 12...\u001b[00m\n",
"[02:24:31\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 24...\u001b[00m\n",
"[02:24:31\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1489a0000b60 for threadedDensity[3] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:31\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148960000b60 for threadedDensity[13] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:31\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 3...\u001b[00m\n",
"[02:24:31\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 13...\u001b[00m\n",
"[02:24:31\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148968000b60 for threadedDensity[10] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:31\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148918000b60 for threadedDensity[15] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:31\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 10...\u001b[00m\n",
"[02:24:31\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 15...\u001b[00m\n",
"[02:24:31\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1488e8000b60 for threadedDensity[2] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:31\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148910000b60 for threadedDensity[23] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:31\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 2...\u001b[00m\n",
"[02:24:31\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 23...\u001b[00m\n",
"[02:24:31\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148930000b60 for threadedDensity[14] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:31\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148938000b60 for threadedDensity[18] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:31\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 14...\u001b[00m\n",
"[02:24:31\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 18...\u001b[00m\n",
"[02:24:31\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1489b0000b60 for threadedDensity[1] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:31\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148900000b60 for threadedDensity[16] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:31\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 1...\u001b[00m\n",
"[02:24:31\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 16...\u001b[00m\n",
"[02:24:31\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1489a8000b60 for threadedDensity[30] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:31\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148948000b60 for threadedDensity[31] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:31\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 30...\u001b[00m\n",
"[02:24:31\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 31...\u001b[00m\n",
"[02:24:31\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1488e0000b60 for threadedDensity[6] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:31\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1488d8000b60 for threadedDensity[29] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:31\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 6...\u001b[00m\n",
"[02:24:31\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 29...\u001b[00m\n",
"[02:24:31\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148998000b60 for threadedDensity[25] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:31\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 25...\u001b[00m\n",
"[02:24:31\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148928000b60 for threadedDensity[20] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:31\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 20...\u001b[00m\n",
"[02:24:31\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 25 done.\u001b[00m\n",
"[02:24:31\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 20 done.\u001b[00m\n",
"[02:24:31\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 7 done.\u001b[00m\n",
"[02:24:31\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 21 done.\u001b[00m\n",
"[02:24:31\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 9 done.\u001b[00m\n",
"[02:24:31\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 19 done.\u001b[00m\n",
"[02:24:31\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 11 done.\u001b[00m\n",
"[02:24:31\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 4 done.\u001b[00m\n",
"[02:24:31\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 17 done.\u001b[00m\n",
"[02:24:31\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 26 done.\u001b[00m\n",
"[02:24:31\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 28 done.\u001b[00m\n",
"[02:24:31\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 5 done.\u001b[00m\n",
"[02:24:31\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 12 done.\u001b[00m\n",
"[02:24:31\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 27 done.\u001b[00m\n",
"[02:24:31\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 0 done.\u001b[00m\n",
"[02:24:31\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 24 done.\u001b[00m\n",
"[02:24:31\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 3 done.\u001b[00m\n",
"[02:24:31\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 13 done.\u001b[00m\n",
"[02:24:31\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 10 done.\u001b[00m\n",
"[02:24:31\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 15 done.\u001b[00m\n",
"[02:24:31\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 2 done.\u001b[00m\n",
"[02:24:31\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 23 done.\u001b[00m\n",
"[02:24:31\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 8 done.\u001b[00m\n",
"[02:24:31\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 22 done.\u001b[00m\n",
"[02:24:31\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 14 done.\u001b[00m\n",
"[02:24:31\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 18 done.\u001b[00m\n",
"[02:24:31\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 1 done.\u001b[00m\n",
"[02:24:31\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 16 done.\u001b[00m\n",
"[02:24:31\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 29 done.\u001b[00m\n",
"[02:24:31\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 6 done.\u001b[00m\n",
"[02:24:31\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 30 done.\u001b[00m\n",
"[02:24:31\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 31 done.\u001b[00m\n",
"[02:24:31\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mPerforming CiC done.\u001b[00m\n",
"[02:24:31\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mPerforming CiC reduction...\u001b[00m\n",
"[02:24:31\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x1489b0000b60 for threadedDensity[1] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:31\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x1488e8000b60 for threadedDensity[2] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:31\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x1489a0000b60 for threadedDensity[3] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:31\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x1489b8000b60 for threadedDensity[4] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:31\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x1488d0000b60 for threadedDensity[5] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:31\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x1488e0000b60 for threadedDensity[6] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:31\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148970000b60 for threadedDensity[7] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:31\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148908000b60 for threadedDensity[8] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:31\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148950000b60 for threadedDensity[9] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:31\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148968000b60 for threadedDensity[10] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:31\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148980000b60 for threadedDensity[11] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:31\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148920000b60 for threadedDensity[12] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:31\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148960000b60 for threadedDensity[13] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:31\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148930000b60 for threadedDensity[14] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:31\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148918000b60 for threadedDensity[15] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:31\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148900000b60 for threadedDensity[16] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:31\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x1488dc000b60 for threadedDensity[17] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:31\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148938000b60 for threadedDensity[18] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:31\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x1488f8000b60 for threadedDensity[19] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:31\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148928000b60 for threadedDensity[20] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:31\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148990000b60 for threadedDensity[21] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:31\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148958000b60 for threadedDensity[22] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:31\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148910000b60 for threadedDensity[23] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:31\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x1488f0000b60 for threadedDensity[24] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:31\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148998000b60 for threadedDensity[25] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:31\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148978000b60 for threadedDensity[26] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:31\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148940000b60 for threadedDensity[27] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:31\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148988000b60 for threadedDensity[28] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:31\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x1488d8000b60 for threadedDensity[29] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:31\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x1489a8000b60 for threadedDensity[30] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:31\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148948000b60 for threadedDensity[31] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:31\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mPerforming CiC reduction done.\u001b[00m\n",
"[02:24:31\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Getting density contrast (using 32 cores and 32 arrays, parallel routine 1) done.\n",
"[02:24:31\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Getting gravitational potential, periodic boundary conditions (using 32 cores)...\n",
"[02:24:31\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (1081344 bytes) at 0x55cb08d7b1a0 for AUX in \u001b[38;5;227mpoisson_solvers.c\u001b[0;36m:\u001b[38;5;192msolve_poisson_DFT\u001b[0;36m:\u001b[0;32m106\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:31\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08d7b1a0 for AUX in \u001b[38;5;227mpoisson_solvers.c\u001b[0;36m:\u001b[38;5;192msolve_poisson_DFT\u001b[0;36m:\u001b[0;32m116\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:31\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Getting gravitational potential, periodic boundary conditions (using 32 cores) done.\n",
"[02:24:31\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Acceleration loop, direction 0...\n",
"[02:24:31\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Acceleration loop, direction 0 done.\n",
"[02:24:31\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Acceleration loop, direction 1...\n",
"[02:24:31\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Acceleration loop, direction 1 done.\n",
"[02:24:31\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Acceleration loop, direction 2...\n",
"[02:24:31\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Acceleration loop, direction 2 done.\n",
"[02:24:31\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08c7b190 for g_pad in \u001b[38;5;227mdiagnostic.c\u001b[0;36m:\u001b[38;5;192mcompute_force_on_particle\u001b[0;36m:\u001b[0;32m70\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:31\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08c1b190 for xwopb in \u001b[38;5;227mdiagnostic.c\u001b[0;36m:\u001b[38;5;192mrun_force_diagnostic\u001b[0;36m:\u001b[0;32m227\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:31\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]====|Computing force for particle pair 1, bin 7: [0.038, 0.063] done. Total: 37 / max 60 pairs. Trials 20454037 / max 100000000.\n",
"[02:24:33\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]====|Computing force for particle pair 2, bin 7: [0.038, 0.063]. Total: 38 / max 60 pairs...\n",
"[02:24:33\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated memory (393204 bytes) at 0x55cb08c1b190 for xwopb in \u001b[38;5;227mdiagnostic.c\u001b[0;36m:\u001b[38;5;192mrun_force_diagnostic\u001b[0;36m:\u001b[0;32m207\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:33\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated memory (1048576 bytes) at 0x55cb08c7b190 for g_pad in \u001b[38;5;227mdiagnostic.c\u001b[0;36m:\u001b[38;5;192mcompute_force_on_particle\u001b[0;36m:\u001b[0;32m32\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:33\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mdp3m0=1.000000\u001b[00m\n",
"[02:24:33\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mdp3m1=1.000000\u001b[00m\n",
"[02:24:33\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mdp3m2=1.000000\u001b[00m\n",
"[02:24:33\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mGiven the available memory, 4095 threads could be allocated and 32 threads will be used in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel\u001b[0;36m:\u001b[0;32m347\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:33\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mGiven the available memory, 4095 threads could be allocated and 32 threads will be used in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m73\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:33\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Getting density contrast (using 32 cores and 32 arrays, parallel routine 1)...\n",
"[02:24:33\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mPerforming CiC binning...\u001b[00m\n",
"[02:24:33\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 0...\u001b[00m\n",
"[02:24:33\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148970000b60 for threadedDensity[7] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:33\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 7...\u001b[00m\n",
"[02:24:33\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148920000b60 for threadedDensity[12] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:33\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 12...\u001b[00m\n",
"[02:24:33\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148978000b60 for threadedDensity[26] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:33\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148940000b60 for threadedDensity[27] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:33\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148928000b60 for threadedDensity[20] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:33\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 27...\u001b[00m\n",
"[02:24:33\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 20...\u001b[00m\n",
"[02:24:33\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1488f8000b60 for threadedDensity[19] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:33\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148950000b60 for threadedDensity[9] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:33\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 19...\u001b[00m\n",
"[02:24:33\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 9...\u001b[00m\n",
"[02:24:33\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1488dc000b60 for threadedDensity[17] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:33\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 26...\u001b[00m\n",
"[02:24:33\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 17...\u001b[00m\n",
"[02:24:33\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148908000b60 for threadedDensity[8] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:33\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148990000b60 for threadedDensity[21] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:33\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 8...\u001b[00m\n",
"[02:24:33\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 21...\u001b[00m\n",
"[02:24:33\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148980000b60 for threadedDensity[11] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:33\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1489b8000b60 for threadedDensity[4] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:33\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 11...\u001b[00m\n",
"[02:24:33\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 4...\u001b[00m\n",
"[02:24:33\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148988000b60 for threadedDensity[28] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:33\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1488d0000b60 for threadedDensity[5] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:33\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 28...\u001b[00m\n",
"[02:24:33\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 5...\u001b[00m\n",
"[02:24:33\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1489a0000b60 for threadedDensity[3] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:33\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148960000b60 for threadedDensity[13] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:33\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 3...\u001b[00m\n",
"[02:24:33\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 13...\u001b[00m\n",
"[02:24:33\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1488e8000b60 for threadedDensity[2] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:33\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148910000b60 for threadedDensity[23] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:33\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 2...\u001b[00m\n",
"[02:24:33\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 23...\u001b[00m\n",
"[02:24:33\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148918000b60 for threadedDensity[15] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:33\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148968000b60 for threadedDensity[10] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:33\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 15...\u001b[00m\n",
"[02:24:33\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 10...\u001b[00m\n",
"[02:24:33\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1488f0000b60 for threadedDensity[24] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:33\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148958000b60 for threadedDensity[22] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:33\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 24...\u001b[00m\n",
"[02:24:33\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 22...\u001b[00m\n",
"[02:24:33\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148900000b60 for threadedDensity[16] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:33\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1489b0000b60 for threadedDensity[1] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:33\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 16...\u001b[00m\n",
"[02:24:33\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 1...\u001b[00m\n",
"[02:24:33\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148948000b60 for threadedDensity[31] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:33\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1489a8000b60 for threadedDensity[30] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:33\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 31...\u001b[00m\n",
"[02:24:33\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 30...\u001b[00m\n",
"[02:24:33\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148930000b60 for threadedDensity[14] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:33\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148938000b60 for threadedDensity[18] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:33\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 14...\u001b[00m\n",
"[02:24:33\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 18...\u001b[00m\n",
"[02:24:33\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148998000b60 for threadedDensity[25] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:33\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1488d8000b60 for threadedDensity[29] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:33\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1488e0000b60 for threadedDensity[6] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:33\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 29...\u001b[00m\n",
"[02:24:33\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 6...\u001b[00m\n",
"[02:24:33\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 25...\u001b[00m\n",
"[02:24:33\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 20 done.\u001b[00m\n",
"[02:24:33\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 27 done.\u001b[00m\n",
"[02:24:33\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 19 done.\u001b[00m\n",
"[02:24:33\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 9 done.\u001b[00m\n",
"[02:24:33\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 21 done.\u001b[00m\n",
"[02:24:33\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 8 done.\u001b[00m\n",
"[02:24:33\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 17 done.\u001b[00m\n",
"[02:24:33\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 26 done.\u001b[00m\n",
"[02:24:33\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 4 done.\u001b[00m\n",
"[02:24:33\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 11 done.\u001b[00m\n",
"[02:24:33\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 5 done.\u001b[00m\n",
"[02:24:33\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 28 done.\u001b[00m\n",
"[02:24:33\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 0 done.\u001b[00m\n",
"[02:24:33\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 12 done.\u001b[00m\n",
"[02:24:33\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 13 done.\u001b[00m\n",
"[02:24:33\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 3 done.\u001b[00m\n",
"[02:24:33\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 2 done.\u001b[00m\n",
"[02:24:33\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 23 done.\u001b[00m\n",
"[02:24:33\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 30 done.\u001b[00m\n",
"[02:24:33\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 31 done.\u001b[00m\n",
"[02:24:33\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 16 done.\u001b[00m\n",
"[02:24:33\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 1 done.\u001b[00m\n",
"[02:24:33\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 10 done.\u001b[00m\n",
"[02:24:33\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 15 done.\u001b[00m\n",
"[02:24:33\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 24 done.\u001b[00m\n",
"[02:24:33\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 22 done.\u001b[00m\n",
"[02:24:33\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 18 done.\u001b[00m\n",
"[02:24:33\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 14 done.\u001b[00m\n",
"[02:24:33\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 29 done.\u001b[00m\n",
"[02:24:33\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 6 done.\u001b[00m\n",
"[02:24:33\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 7 done.\u001b[00m\n",
"[02:24:33\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 25 done.\u001b[00m\n",
"[02:24:33\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mPerforming CiC done.\u001b[00m\n",
"[02:24:33\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mPerforming CiC reduction...\u001b[00m\n",
"[02:24:33\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x1489b0000b60 for threadedDensity[1] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:33\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x1488e8000b60 for threadedDensity[2] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:33\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x1489a0000b60 for threadedDensity[3] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:33\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x1489b8000b60 for threadedDensity[4] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:33\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x1488d0000b60 for threadedDensity[5] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:33\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x1488e0000b60 for threadedDensity[6] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:33\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148970000b60 for threadedDensity[7] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:33\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148908000b60 for threadedDensity[8] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:33\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148950000b60 for threadedDensity[9] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:33\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148968000b60 for threadedDensity[10] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:33\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148980000b60 for threadedDensity[11] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:33\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148920000b60 for threadedDensity[12] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:33\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148960000b60 for threadedDensity[13] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:33\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148930000b60 for threadedDensity[14] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:33\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148918000b60 for threadedDensity[15] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:33\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148900000b60 for threadedDensity[16] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:33\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x1488dc000b60 for threadedDensity[17] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:33\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148938000b60 for threadedDensity[18] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:33\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x1488f8000b60 for threadedDensity[19] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:33\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148928000b60 for threadedDensity[20] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:33\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148990000b60 for threadedDensity[21] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:33\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148958000b60 for threadedDensity[22] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:33\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148910000b60 for threadedDensity[23] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:33\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x1488f0000b60 for threadedDensity[24] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:33\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148998000b60 for threadedDensity[25] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:33\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148978000b60 for threadedDensity[26] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:33\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148940000b60 for threadedDensity[27] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:33\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148988000b60 for threadedDensity[28] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:33\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x1488d8000b60 for threadedDensity[29] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:33\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x1489a8000b60 for threadedDensity[30] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:33\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148948000b60 for threadedDensity[31] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:33\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mPerforming CiC reduction done.\u001b[00m\n",
"[02:24:33\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Getting density contrast (using 32 cores and 32 arrays, parallel routine 1) done.\n",
"[02:24:33\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Getting gravitational potential, periodic boundary conditions (using 32 cores)...\n",
"[02:24:33\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (1081344 bytes) at 0x55cb08d7b1a0 for AUX in \u001b[38;5;227mpoisson_solvers.c\u001b[0;36m:\u001b[38;5;192msolve_poisson_DFT\u001b[0;36m:\u001b[0;32m106\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:33\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08d7b1a0 for AUX in \u001b[38;5;227mpoisson_solvers.c\u001b[0;36m:\u001b[38;5;192msolve_poisson_DFT\u001b[0;36m:\u001b[0;32m116\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:33\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Getting gravitational potential, periodic boundary conditions (using 32 cores) done.\n",
"[02:24:33\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Acceleration loop, direction 0...\n",
"[02:24:33\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Acceleration loop, direction 0 done.\n",
"[02:24:33\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Acceleration loop, direction 1...\n",
"[02:24:33\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Acceleration loop, direction 1 done.\n",
"[02:24:33\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Acceleration loop, direction 2...\n",
"[02:24:33\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Acceleration loop, direction 2 done.\n",
"[02:24:33\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08c7b190 for g_pad in \u001b[38;5;227mdiagnostic.c\u001b[0;36m:\u001b[38;5;192mcompute_force_on_particle\u001b[0;36m:\u001b[0;32m70\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:33\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08c1b190 for xwopb in \u001b[38;5;227mdiagnostic.c\u001b[0;36m:\u001b[38;5;192mrun_force_diagnostic\u001b[0;36m:\u001b[0;32m227\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:33\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]====|Computing force for particle pair 2, bin 7: [0.038, 0.063] done. Total: 38 / max 60 pairs. Trials 39042672 / max 100000000.\n",
"[02:24:34\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]====|Computing force for particle pair 1, bin 6: [0.022, 0.038]. Total: 39 / max 60 pairs...\n",
"[02:24:34\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated memory (393204 bytes) at 0x55cb08c1b190 for xwopb in \u001b[38;5;227mdiagnostic.c\u001b[0;36m:\u001b[38;5;192mrun_force_diagnostic\u001b[0;36m:\u001b[0;32m207\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:34\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated memory (1048576 bytes) at 0x55cb08c7b190 for g_pad in \u001b[38;5;227mdiagnostic.c\u001b[0;36m:\u001b[38;5;192mcompute_force_on_particle\u001b[0;36m:\u001b[0;32m32\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:34\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mdp3m0=1.000000\u001b[00m\n",
"[02:24:34\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mdp3m1=1.000000\u001b[00m\n",
"[02:24:34\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mdp3m2=1.000000\u001b[00m\n",
"[02:24:34\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mGiven the available memory, 4095 threads could be allocated and 32 threads will be used in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel\u001b[0;36m:\u001b[0;32m347\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:34\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mGiven the available memory, 4095 threads could be allocated and 32 threads will be used in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m73\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:34\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Getting density contrast (using 32 cores and 32 arrays, parallel routine 1)...\n",
"[02:24:34\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mPerforming CiC binning...\u001b[00m\n",
"[02:24:34\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 0...\u001b[00m\n",
"[02:24:34\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148978000b60 for threadedDensity[26] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:34\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148950000b60 for threadedDensity[9] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:34\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1488f8000b60 for threadedDensity[19] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:34\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 9...\u001b[00m\n",
"[02:24:34\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 19...\u001b[00m\n",
"[02:24:34\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148908000b60 for threadedDensity[8] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:34\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148990000b60 for threadedDensity[21] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:34\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 8...\u001b[00m\n",
"[02:24:34\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 21...\u001b[00m\n",
"[02:24:34\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1488dc000b60 for threadedDensity[17] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:34\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 26...\u001b[00m\n",
"[02:24:34\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 17...\u001b[00m\n",
"[02:24:34\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148940000b60 for threadedDensity[27] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:34\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148928000b60 for threadedDensity[20] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:34\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 27...\u001b[00m\n",
"[02:24:34\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 20...\u001b[00m\n",
"[02:24:34\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148980000b60 for threadedDensity[11] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:34\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1489b8000b60 for threadedDensity[4] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:34\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 11...\u001b[00m\n",
"[02:24:34\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 4...\u001b[00m\n",
"[02:24:34\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148920000b60 for threadedDensity[12] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:34\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148960000b60 for threadedDensity[13] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:34\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1489a0000b60 for threadedDensity[3] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:34\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 13...\u001b[00m\n",
"[02:24:34\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 3...\u001b[00m\n",
"[02:24:34\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148988000b60 for threadedDensity[28] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:34\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 28...\u001b[00m\n",
"[02:24:34\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 12...\u001b[00m\n",
"[02:24:34\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148968000b60 for threadedDensity[10] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:34\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148918000b60 for threadedDensity[15] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:34\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 10...\u001b[00m\n",
"[02:24:34\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 15...\u001b[00m\n",
"[02:24:34\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1488d0000b60 for threadedDensity[5] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:34\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1488e8000b60 for threadedDensity[2] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:34\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148910000b60 for threadedDensity[23] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:34\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 2...\u001b[00m\n",
"[02:24:34\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 23...\u001b[00m\n",
"[02:24:34\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 5...\u001b[00m\n",
"[02:24:34\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148930000b60 for threadedDensity[14] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:34\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148938000b60 for threadedDensity[18] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:34\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 14...\u001b[00m\n",
"[02:24:34\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 18...\u001b[00m\n",
"[02:24:34\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1489b0000b60 for threadedDensity[1] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:34\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148900000b60 for threadedDensity[16] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:34\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 1...\u001b[00m\n",
"[02:24:34\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 16...\u001b[00m\n",
"[02:24:34\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148948000b60 for threadedDensity[31] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:34\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1489a8000b60 for threadedDensity[30] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:34\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 31...\u001b[00m\n",
"[02:24:34\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 30...\u001b[00m\n",
"[02:24:34\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1488f0000b60 for threadedDensity[24] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:34\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148958000b60 for threadedDensity[22] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:34\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 24...\u001b[00m\n",
"[02:24:34\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 22...\u001b[00m\n",
"[02:24:34\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148970000b60 for threadedDensity[7] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:34\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148998000b60 for threadedDensity[25] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:34\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 7...\u001b[00m\n",
"[02:24:34\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 25...\u001b[00m\n",
"[02:24:34\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1488d8000b60 for threadedDensity[29] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:34\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1488e0000b60 for threadedDensity[6] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:34\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 29...\u001b[00m\n",
"[02:24:34\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 6...\u001b[00m\n",
"[02:24:34\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 28 done.\u001b[00m\n",
"[02:24:34\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 5 done.\u001b[00m\n",
"[02:24:34\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 21 done.\u001b[00m\n",
"[02:24:34\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 8 done.\u001b[00m\n",
"[02:24:34\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 19 done.\u001b[00m\n",
"[02:24:34\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 9 done.\u001b[00m\n",
"[02:24:34\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 17 done.\u001b[00m\n",
"[02:24:34\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 26 done.\u001b[00m\n",
"[02:24:34\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 11 done.\u001b[00m\n",
"[02:24:34\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 4 done.\u001b[00m\n",
"[02:24:34\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 20 done.\u001b[00m\n",
"[02:24:34\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 27 done.\u001b[00m\n",
"[02:24:34\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 13 done.\u001b[00m\n",
"[02:24:34\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 3 done.\u001b[00m\n",
"[02:24:34\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 12 done.\u001b[00m\n",
"[02:24:34\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 0 done.\u001b[00m\n",
"[02:24:34\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 23 done.\u001b[00m\n",
"[02:24:34\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 2 done.\u001b[00m\n",
"[02:24:34\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 15 done.\u001b[00m\n",
"[02:24:34\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 10 done.\u001b[00m\n",
"[02:24:34\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 24 done.\u001b[00m\n",
"[02:24:34\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 22 done.\u001b[00m\n",
"[02:24:34\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 14 done.\u001b[00m\n",
"[02:24:34\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 18 done.\u001b[00m\n",
"[02:24:34\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 31 done.\u001b[00m\n",
"[02:24:34\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 30 done.\u001b[00m\n",
"[02:24:34\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 16 done.\u001b[00m\n",
"[02:24:34\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 1 done.\u001b[00m\n",
"[02:24:34\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 6 done.\u001b[00m\n",
"[02:24:34\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 29 done.\u001b[00m\n",
"[02:24:34\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 7 done.\u001b[00m\n",
"[02:24:34\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 25 done.\u001b[00m\n",
"[02:24:34\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mPerforming CiC done.\u001b[00m\n",
"[02:24:34\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mPerforming CiC reduction...\u001b[00m\n",
"[02:24:34\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x1489b0000b60 for threadedDensity[1] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:34\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x1488e8000b60 for threadedDensity[2] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:34\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x1489a0000b60 for threadedDensity[3] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:34\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x1489b8000b60 for threadedDensity[4] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:34\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x1488d0000b60 for threadedDensity[5] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:34\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x1488e0000b60 for threadedDensity[6] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:34\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148970000b60 for threadedDensity[7] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:34\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148908000b60 for threadedDensity[8] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:34\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148950000b60 for threadedDensity[9] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:34\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148968000b60 for threadedDensity[10] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:34\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148980000b60 for threadedDensity[11] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:34\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148920000b60 for threadedDensity[12] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:34\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148960000b60 for threadedDensity[13] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:34\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148930000b60 for threadedDensity[14] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:34\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148918000b60 for threadedDensity[15] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:34\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148900000b60 for threadedDensity[16] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:34\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x1488dc000b60 for threadedDensity[17] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:34\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148938000b60 for threadedDensity[18] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:34\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x1488f8000b60 for threadedDensity[19] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:34\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148928000b60 for threadedDensity[20] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:34\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148990000b60 for threadedDensity[21] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:34\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148958000b60 for threadedDensity[22] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:34\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148910000b60 for threadedDensity[23] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:34\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x1488f0000b60 for threadedDensity[24] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:34\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148998000b60 for threadedDensity[25] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:34\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148978000b60 for threadedDensity[26] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:34\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148940000b60 for threadedDensity[27] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:34\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148988000b60 for threadedDensity[28] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:34\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x1488d8000b60 for threadedDensity[29] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:34\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x1489a8000b60 for threadedDensity[30] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:34\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148948000b60 for threadedDensity[31] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:34\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mPerforming CiC reduction done.\u001b[00m\n",
"[02:24:34\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Getting density contrast (using 32 cores and 32 arrays, parallel routine 1) done.\n",
"[02:24:34\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Getting gravitational potential, periodic boundary conditions (using 32 cores)...\n",
"[02:24:34\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (1081344 bytes) at 0x55cb08d7b1a0 for AUX in \u001b[38;5;227mpoisson_solvers.c\u001b[0;36m:\u001b[38;5;192msolve_poisson_DFT\u001b[0;36m:\u001b[0;32m106\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:34\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08d7b1a0 for AUX in \u001b[38;5;227mpoisson_solvers.c\u001b[0;36m:\u001b[38;5;192msolve_poisson_DFT\u001b[0;36m:\u001b[0;32m116\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:34\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Getting gravitational potential, periodic boundary conditions (using 32 cores) done.\n",
"[02:24:34\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Acceleration loop, direction 0...\n",
"[02:24:34\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Acceleration loop, direction 0 done.\n",
"[02:24:34\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Acceleration loop, direction 1...\n",
"[02:24:34\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Acceleration loop, direction 1 done.\n",
"[02:24:34\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Acceleration loop, direction 2...\n",
"[02:24:34\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Acceleration loop, direction 2 done.\n",
"[02:24:34\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08c7b190 for g_pad in \u001b[38;5;227mdiagnostic.c\u001b[0;36m:\u001b[38;5;192mcompute_force_on_particle\u001b[0;36m:\u001b[0;32m70\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:34\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08c1b190 for xwopb in \u001b[38;5;227mdiagnostic.c\u001b[0;36m:\u001b[38;5;192mrun_force_diagnostic\u001b[0;36m:\u001b[0;32m227\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:34\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]====|Computing force for particle pair 1, bin 6: [0.022, 0.038] done. Total: 39 / max 60 pairs. Trials 41063896 / max 100000000.\n",
"[02:24:35\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]====|Computing force for particle pair 3, bin 7: [0.038, 0.063]. Total: 40 / max 60 pairs...\n",
"[02:24:35\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated memory (393204 bytes) at 0x55cb08c1b190 for xwopb in \u001b[38;5;227mdiagnostic.c\u001b[0;36m:\u001b[38;5;192mrun_force_diagnostic\u001b[0;36m:\u001b[0;32m207\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:35\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated memory (1048576 bytes) at 0x55cb08c7b190 for g_pad in \u001b[38;5;227mdiagnostic.c\u001b[0;36m:\u001b[38;5;192mcompute_force_on_particle\u001b[0;36m:\u001b[0;32m32\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:35\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mdp3m0=1.000000\u001b[00m\n",
"[02:24:35\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mdp3m1=1.000000\u001b[00m\n",
"[02:24:35\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mdp3m2=1.000000\u001b[00m\n",
"[02:24:35\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mGiven the available memory, 4095 threads could be allocated and 32 threads will be used in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel\u001b[0;36m:\u001b[0;32m347\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:35\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mGiven the available memory, 4095 threads could be allocated and 32 threads will be used in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m73\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:35\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Getting density contrast (using 32 cores and 32 arrays, parallel routine 1)...\n",
"[02:24:35\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mPerforming CiC binning...\u001b[00m\n",
"[02:24:35\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 0...\u001b[00m\n",
"[02:24:35\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148950000b60 for threadedDensity[9] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:35\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1488f8000b60 for threadedDensity[19] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:35\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 19...\u001b[00m\n",
"[02:24:35\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 9...\u001b[00m\n",
"[02:24:35\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148990000b60 for threadedDensity[21] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:35\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148980000b60 for threadedDensity[11] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:35\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 21...\u001b[00m\n",
"[02:24:35\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1488dc000b60 for threadedDensity[17] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:35\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148978000b60 for threadedDensity[26] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:35\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 17...\u001b[00m\n",
"[02:24:35\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 26...\u001b[00m\n",
"[02:24:35\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1489b8000b60 for threadedDensity[4] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:35\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 11...\u001b[00m\n",
"[02:24:35\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 4...\u001b[00m\n",
"[02:24:35\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148988000b60 for threadedDensity[28] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:35\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148968000b60 for threadedDensity[10] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:35\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148918000b60 for threadedDensity[15] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:35\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 10...\u001b[00m\n",
"[02:24:35\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148940000b60 for threadedDensity[27] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:35\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148928000b60 for threadedDensity[20] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:35\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 27...\u001b[00m\n",
"[02:24:35\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 20...\u001b[00m\n",
"[02:24:35\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 28...\u001b[00m\n",
"[02:24:35\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1488d0000b60 for threadedDensity[5] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:35\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148960000b60 for threadedDensity[13] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:35\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1489a0000b60 for threadedDensity[3] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:35\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 13...\u001b[00m\n",
"[02:24:35\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 3...\u001b[00m\n",
"[02:24:35\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 5...\u001b[00m\n",
"[02:24:35\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1488e8000b60 for threadedDensity[2] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:35\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148910000b60 for threadedDensity[23] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:35\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 2...\u001b[00m\n",
"[02:24:35\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 23...\u001b[00m\n",
"[02:24:35\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 15...\u001b[00m\n",
"[02:24:35\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148938000b60 for threadedDensity[18] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:35\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148930000b60 for threadedDensity[14] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:35\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 18...\u001b[00m\n",
"[02:24:35\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 14...\u001b[00m\n",
"[02:24:35\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148958000b60 for threadedDensity[22] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:35\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148948000b60 for threadedDensity[31] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:35\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1489a8000b60 for threadedDensity[30] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:35\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 31...\u001b[00m\n",
"[02:24:35\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 30...\u001b[00m\n",
"[02:24:35\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 22...\u001b[00m\n",
"[02:24:35\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1489b0000b60 for threadedDensity[1] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:35\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148900000b60 for threadedDensity[16] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:35\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 1...\u001b[00m\n",
"[02:24:35\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 16...\u001b[00m\n",
"[02:24:35\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148998000b60 for threadedDensity[25] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:35\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1488d8000b60 for threadedDensity[29] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:35\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1488e0000b60 for threadedDensity[6] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:35\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 29...\u001b[00m\n",
"[02:24:35\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 6...\u001b[00m\n",
"[02:24:35\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 25...\u001b[00m\n",
"[02:24:35\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148920000b60 for threadedDensity[12] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:35\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 12...\u001b[00m\n",
"[02:24:35\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148908000b60 for threadedDensity[8] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:35\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 8...\u001b[00m\n",
"[02:24:35\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1488f0000b60 for threadedDensity[24] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:35\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 24...\u001b[00m\n",
"[02:24:35\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148970000b60 for threadedDensity[7] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:35\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 7...\u001b[00m\n",
"[02:24:35\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 25 done.\u001b[00m\n",
"[02:24:35\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 7 done.\u001b[00m\n",
"[02:24:35\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 19 done.\u001b[00m\n",
"[02:24:35\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 9 done.\u001b[00m\n",
"[02:24:35\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 21 done.\u001b[00m\n",
"[02:24:35\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 8 done.\u001b[00m\n",
"[02:24:35\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 4 done.\u001b[00m\n",
"[02:24:35\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 11 done.\u001b[00m\n",
"[02:24:35\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 17 done.\u001b[00m\n",
"[02:24:35\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 26 done.\u001b[00m\n",
"[02:24:35\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 27 done.\u001b[00m\n",
"[02:24:35\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 20 done.\u001b[00m\n",
"[02:24:35\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 5 done.\u001b[00m\n",
"[02:24:35\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 28 done.\u001b[00m\n",
"[02:24:35\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 3 done.\u001b[00m\n",
"[02:24:35\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 13 done.\u001b[00m\n",
"[02:24:35\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 0 done.\u001b[00m\n",
"[02:24:35\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 12 done.\u001b[00m\n",
"[02:24:35\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 10 done.\u001b[00m\n",
"[02:24:35\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 15 done.\u001b[00m\n",
"[02:24:35\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 2 done.\u001b[00m\n",
"[02:24:35\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 23 done.\u001b[00m\n",
"[02:24:35\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 14 done.\u001b[00m\n",
"[02:24:35\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 18 done.\u001b[00m\n",
"[02:24:35\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 24 done.\u001b[00m\n",
"[02:24:35\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 22 done.\u001b[00m\n",
"[02:24:35\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 30 done.\u001b[00m\n",
"[02:24:35\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 31 done.\u001b[00m\n",
"[02:24:35\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 1 done.\u001b[00m\n",
"[02:24:35\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 16 done.\u001b[00m\n",
"[02:24:35\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 29 done.\u001b[00m\n",
"[02:24:35\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mPerforming CiC binning with thread 6 done.\u001b[00m\n",
"[02:24:35\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mPerforming CiC done.\u001b[00m\n",
"[02:24:35\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mPerforming CiC reduction...\u001b[00m\n",
"[02:24:35\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x1489b0000b60 for threadedDensity[1] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:35\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x1488e8000b60 for threadedDensity[2] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:35\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x1489a0000b60 for threadedDensity[3] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:35\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x1489b8000b60 for threadedDensity[4] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:35\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x1488d0000b60 for threadedDensity[5] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:35\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x1488e0000b60 for threadedDensity[6] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:35\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148970000b60 for threadedDensity[7] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:35\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148908000b60 for threadedDensity[8] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:35\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148950000b60 for threadedDensity[9] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:35\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148968000b60 for threadedDensity[10] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:35\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148980000b60 for threadedDensity[11] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:35\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148920000b60 for threadedDensity[12] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:35\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148960000b60 for threadedDensity[13] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:35\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148930000b60 for threadedDensity[14] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:35\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148918000b60 for threadedDensity[15] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:35\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148900000b60 for threadedDensity[16] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:35\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x1488dc000b60 for threadedDensity[17] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:35\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148938000b60 for threadedDensity[18] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:35\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x1488f8000b60 for threadedDensity[19] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:35\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148928000b60 for threadedDensity[20] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:35\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148990000b60 for threadedDensity[21] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:35\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148958000b60 for threadedDensity[22] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:35\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148910000b60 for threadedDensity[23] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:35\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x1488f0000b60 for threadedDensity[24] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:35\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148998000b60 for threadedDensity[25] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:35\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148978000b60 for threadedDensity[26] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:35\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148940000b60 for threadedDensity[27] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:35\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148988000b60 for threadedDensity[28] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:35\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x1488d8000b60 for threadedDensity[29] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:35\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x1489a8000b60 for threadedDensity[30] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:35\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x148948000b60 for threadedDensity[31] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:35\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mPerforming CiC reduction done.\u001b[00m\n",
"[02:24:35\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Getting density contrast (using 32 cores and 32 arrays, parallel routine 1) done.\n",
"[02:24:35\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Getting gravitational potential, periodic boundary conditions (using 32 cores)...\n",
"[02:24:35\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (1081344 bytes) at 0x55cb08d7b1a0 for AUX in \u001b[38;5;227mpoisson_solvers.c\u001b[0;36m:\u001b[38;5;192msolve_poisson_DFT\u001b[0;36m:\u001b[0;32m106\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:35\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08d7b1a0 for AUX in \u001b[38;5;227mpoisson_solvers.c\u001b[0;36m:\u001b[38;5;192msolve_poisson_DFT\u001b[0;36m:\u001b[0;32m116\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:35\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Getting gravitational potential, periodic boundary conditions (using 32 cores) done.\n",
"[02:24:35\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Acceleration loop, direction 0...\n",
"[02:24:35\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Acceleration loop, direction 0 done.\n",
"[02:24:35\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Acceleration loop, direction 1...\n",
"[02:24:35\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Acceleration loop, direction 1 done.\n",
"[02:24:35\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Acceleration loop, direction 2...\n",
"[02:24:35\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Acceleration loop, direction 2 done.\n",
"[02:24:35\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08c7b190 for g_pad in \u001b[38;5;227mdiagnostic.c\u001b[0;36m:\u001b[38;5;192mcompute_force_on_particle\u001b[0;36m:\u001b[0;32m70\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:35\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08c1b190 for xwopb in \u001b[38;5;227mdiagnostic.c\u001b[0;36m:\u001b[38;5;192mrun_force_diagnostic\u001b[0;36m:\u001b[0;32m227\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:35\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]====|Computing force for particle pair 3, bin 7: [0.038, 0.063] done. Total: 40 / max 60 pairs. Trials 55031944 / max 100000000.\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]====|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08bbb180 for f_before_all in \u001b[38;5;227mdiagnostic.c\u001b[0;36m:\u001b[38;5;192mrun_force_diagnostic\u001b[0;36m:\u001b[0;32m238\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]==|ModuleP3M: Running force diagnostic done.\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]====|\u001b[38;5;246maf=1.000000\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]====|\u001b[38;5;246mhubble_af=100.000000\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]====|\u001b[38;5;246mD_af=1.000000\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb087bb520 for DUMMY in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mevolve_p3m\u001b[0;36m:\u001b[0;32m578\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08575200 for x in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mevolve_p3m\u001b[0;36m:\u001b[0;32m579\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb085d5210 for p in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mevolve_p3m\u001b[0;36m:\u001b[0;32m580\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08abb170 for density_or_Phi in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mevolve_p3m\u001b[0;36m:\u001b[0;32m581\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;159mTIMER \u001b[00m]==|Box: Density: 76.515 CPU - 2.513 wallclock seconds used.\n",
"[02:24:41\u001b[00m|\u001b[38;5;159mTIMER \u001b[00m]==|Box: Potential: 16.466 CPU - 0.608 wallclock seconds used.\n",
"[02:24:41\u001b[00m|\u001b[38;5;159mTIMER \u001b[00m]==|Box: Accelerations (long-range): 16.327 CPU - 0.574 wallclock seconds used.\n",
"[02:24:41\u001b[00m|\u001b[38;5;159mTIMER \u001b[00m]==|Box: Accelerations (short-range): 5.071 CPU - 0.170 wallclock seconds used.\n",
"[02:24:41\u001b[00m|\u001b[38;5;159mTIMER \u001b[00m]==|Box: Kick: 13.571 CPU - 0.457 wallclock seconds used.\n",
"[02:24:41\u001b[00m|\u001b[38;5;159mTIMER \u001b[00m]==|Box: Drift: 24.064 CPU - 0.830 wallclock seconds used.\n",
"[02:24:41\u001b[00m|\u001b[38;5;159mTIMER \u001b[00m]==|Box: Inputs: 0.000 CPU - 0.000 wallclock seconds used.\n",
"[02:24:41\u001b[00m|\u001b[38;5;159mTIMER \u001b[00m]==|Box: Diagnostic: 219.737 CPU - 18.735 wallclock seconds used.\n",
"[02:24:41\u001b[00m|\u001b[38;5;159mTIMER \u001b[00m]==|Box: Outputs: 0.000 CPU - 0.000 wallclock seconds used.\n",
"[02:24:41\u001b[00m|\u001b[38;5;159mTIMER \u001b[00m]==|Box: Total Evolution: 371.750 CPU - 23.887 wallclock seconds used.\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08797450 for forces in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mevolve_p3m\u001b[0;36m:\u001b[0;32m587\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08797720 for snapshots in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mevolve_p3m\u001b[0;36m:\u001b[0;32m587\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08200cd0 for aKickBeg in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mevolve_p3m\u001b[0;36m:\u001b[0;32m587\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb081fe4e0 for aKickEnd in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mevolve_p3m\u001b[0;36m:\u001b[0;32m587\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb081fcad0 for aDriftBeg in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mevolve_p3m\u001b[0;36m:\u001b[0;32m587\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb081fc9a0 for aDriftEnd in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mevolve_p3m\u001b[0;36m:\u001b[0;32m587\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb081fa1f0 for aiKick in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mevolve_p3m\u001b[0;36m:\u001b[0;32m587\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0825a390 for afKick in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mevolve_p3m\u001b[0;36m:\u001b[0;32m587\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08209450 for aDrift in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mevolve_p3m\u001b[0;36m:\u001b[0;32m587\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08794480 for aiDrift in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mevolve_p3m\u001b[0;36m:\u001b[0;32m587\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb087a2b00 for afDrift in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mevolve_p3m\u001b[0;36m:\u001b[0;32m587\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08796a40 for aKick in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mevolve_p3m\u001b[0;36m:\u001b[0;32m587\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;147mMODULE \u001b[00m]|\u001b[38;5;147mModuleP3M: Evolving with P3M done.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;147mMODULE \u001b[00m]|\u001b[38;5;147mModulePMCOLA: Computing outputs...\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mGiven the available memory, 32767 threads could be allocated and 32 threads will be used in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel\u001b[0;36m:\u001b[0;32m347\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mGiven the available memory, 32767 threads could be allocated and 32 threads will be used in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m73\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]==|Getting density contrast (using 32 cores and 32 arrays, parallel routine 1)...\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]====|\u001b[38;5;246mPerforming CiC binning...\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]====|\u001b[38;5;246mPerforming CiC binning with thread 0...\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]====|\u001b[38;5;246mCorrectly allocated and initialized memory (131072 bytes) at 0x148920000b60 for threadedDensity[12] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]====|\u001b[38;5;246mPerforming CiC binning with thread 12...\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]====|\u001b[38;5;246mCorrectly allocated and initialized memory (131072 bytes) at 0x148928000b60 for threadedDensity[20] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]====|\u001b[38;5;246mCorrectly allocated and initialized memory (131072 bytes) at 0x148940000b60 for threadedDensity[27] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]====|\u001b[38;5;246mPerforming CiC binning with thread 20...\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]====|\u001b[38;5;246mPerforming CiC binning with thread 27...\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]====|\u001b[38;5;246mCorrectly allocated and initialized memory (131072 bytes) at 0x1488f8000b60 for threadedDensity[19] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]====|\u001b[38;5;246mCorrectly allocated and initialized memory (131072 bytes) at 0x148950000b60 for threadedDensity[9] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]====|\u001b[38;5;246mPerforming CiC binning with thread 19...\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]====|\u001b[38;5;246mPerforming CiC binning with thread 9...\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]====|\u001b[38;5;246mCorrectly allocated and initialized memory (131072 bytes) at 0x148990000b60 for threadedDensity[21] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]====|\u001b[38;5;246mCorrectly allocated and initialized memory (131072 bytes) at 0x148908000b60 for threadedDensity[8] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]====|\u001b[38;5;246mPerforming CiC binning with thread 21...\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]====|\u001b[38;5;246mPerforming CiC binning with thread 8...\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]====|\u001b[38;5;246mCorrectly allocated and initialized memory (131072 bytes) at 0x148980000b60 for threadedDensity[11] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]====|\u001b[38;5;246mCorrectly allocated and initialized memory (131072 bytes) at 0x1489b8000b60 for threadedDensity[4] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]====|\u001b[38;5;246mPerforming CiC binning with thread 11...\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]====|\u001b[38;5;246mPerforming CiC binning with thread 4...\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]====|\u001b[38;5;246mCorrectly allocated and initialized memory (131072 bytes) at 0x1488dc000b60 for threadedDensity[17] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]====|\u001b[38;5;246mCorrectly allocated and initialized memory (131072 bytes) at 0x148978000b60 for threadedDensity[26] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]====|\u001b[38;5;246mPerforming CiC binning with thread 26...\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]====|\u001b[38;5;246mPerforming CiC binning with thread 17...\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]====|\u001b[38;5;246mCorrectly allocated and initialized memory (131072 bytes) at 0x148988000b60 for threadedDensity[28] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]====|\u001b[38;5;246mCorrectly allocated and initialized memory (131072 bytes) at 0x1488d0000b60 for threadedDensity[5] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]====|\u001b[38;5;246mPerforming CiC binning with thread 28...\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]====|\u001b[38;5;246mPerforming CiC binning with thread 5...\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]====|\u001b[38;5;246mCorrectly allocated and initialized memory (131072 bytes) at 0x148960000b60 for threadedDensity[13] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]====|\u001b[38;5;246mCorrectly allocated and initialized memory (131072 bytes) at 0x1489a0000b60 for threadedDensity[3] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]====|\u001b[38;5;246mPerforming CiC binning with thread 13...\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]====|\u001b[38;5;246mPerforming CiC binning with thread 3...\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]====|\u001b[38;5;246mCorrectly allocated and initialized memory (131072 bytes) at 0x1488e8000b60 for threadedDensity[2] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]====|\u001b[38;5;246mCorrectly allocated and initialized memory (131072 bytes) at 0x148910000b60 for threadedDensity[23] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]====|\u001b[38;5;246mPerforming CiC binning with thread 2...\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]====|\u001b[38;5;246mPerforming CiC binning with thread 23...\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]====|\u001b[38;5;246mCorrectly allocated and initialized memory (131072 bytes) at 0x1488f0000b60 for threadedDensity[24] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]====|\u001b[38;5;246mCorrectly allocated and initialized memory (131072 bytes) at 0x148958000b60 for threadedDensity[22] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]====|\u001b[38;5;246mPerforming CiC binning with thread 24...\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]====|\u001b[38;5;246mPerforming CiC binning with thread 22...\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]====|\u001b[38;5;246mCorrectly allocated and initialized memory (131072 bytes) at 0x148918000b60 for threadedDensity[15] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]====|\u001b[38;5;246mCorrectly allocated and initialized memory (131072 bytes) at 0x148968000b60 for threadedDensity[10] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]====|\u001b[38;5;246mPerforming CiC binning with thread 15...\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]====|\u001b[38;5;246mPerforming CiC binning with thread 10...\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]====|\u001b[38;5;246mCorrectly allocated and initialized memory (131072 bytes) at 0x148930000b60 for threadedDensity[14] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]====|\u001b[38;5;246mCorrectly allocated and initialized memory (131072 bytes) at 0x148938000b60 for threadedDensity[18] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]====|\u001b[38;5;246mPerforming CiC binning with thread 14...\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]====|\u001b[38;5;246mPerforming CiC binning with thread 18...\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]====|\u001b[38;5;246mCorrectly allocated and initialized memory (131072 bytes) at 0x1489b0000b60 for threadedDensity[1] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]====|\u001b[38;5;246mCorrectly allocated and initialized memory (131072 bytes) at 0x148900000b60 for threadedDensity[16] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]====|\u001b[38;5;246mPerforming CiC binning with thread 1...\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]====|\u001b[38;5;246mPerforming CiC binning with thread 16...\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]====|\u001b[38;5;246mCorrectly allocated and initialized memory (131072 bytes) at 0x1489a8000b60 for threadedDensity[30] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]====|\u001b[38;5;246mCorrectly allocated and initialized memory (131072 bytes) at 0x148948000b60 for threadedDensity[31] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]====|\u001b[38;5;246mPerforming CiC binning with thread 30...\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]====|\u001b[38;5;246mPerforming CiC binning with thread 31...\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]====|\u001b[38;5;246mCorrectly allocated and initialized memory (131072 bytes) at 0x148970000b60 for threadedDensity[7] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]====|\u001b[38;5;246mCorrectly allocated and initialized memory (131072 bytes) at 0x148998000b60 for threadedDensity[25] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]====|\u001b[38;5;246mPerforming CiC binning with thread 7...\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]====|\u001b[38;5;246mPerforming CiC binning with thread 25...\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]====|\u001b[38;5;246mCorrectly allocated and initialized memory (131072 bytes) at 0x1488e0000b60 for threadedDensity[6] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]====|\u001b[38;5;246mCorrectly allocated and initialized memory (131072 bytes) at 0x1488d8000b60 for threadedDensity[29] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]====|\u001b[38;5;246mPerforming CiC binning with thread 6...\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]====|\u001b[38;5;246mPerforming CiC binning with thread 29...\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]====|\u001b[38;5;246mPerforming CiC binning with thread 28 done.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]====|\u001b[38;5;246mPerforming CiC binning with thread 5 done.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]====|\u001b[38;5;246mPerforming CiC binning with thread 19 done.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]====|\u001b[38;5;246mPerforming CiC binning with thread 9 done.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]====|\u001b[38;5;246mPerforming CiC binning with thread 8 done.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]====|\u001b[38;5;246mPerforming CiC binning with thread 21 done.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]====|\u001b[38;5;246mPerforming CiC binning with thread 26 done.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]====|\u001b[38;5;246mPerforming CiC binning with thread 17 done.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]====|\u001b[38;5;246mPerforming CiC binning with thread 11 done.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]====|\u001b[38;5;246mPerforming CiC binning with thread 4 done.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]====|\u001b[38;5;246mPerforming CiC binning with thread 20 done.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]====|\u001b[38;5;246mPerforming CiC binning with thread 27 done.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]====|\u001b[38;5;246mPerforming CiC binning with thread 3 done.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]====|\u001b[38;5;246mPerforming CiC binning with thread 13 done.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]====|\u001b[38;5;246mPerforming CiC binning with thread 0 done.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]====|\u001b[38;5;246mPerforming CiC binning with thread 12 done.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]====|\u001b[38;5;246mPerforming CiC binning with thread 2 done.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]====|\u001b[38;5;246mPerforming CiC binning with thread 23 done.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]====|\u001b[38;5;246mPerforming CiC binning with thread 14 done.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]====|\u001b[38;5;246mPerforming CiC binning with thread 18 done.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]====|\u001b[38;5;246mPerforming CiC binning with thread 15 done.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]====|\u001b[38;5;246mPerforming CiC binning with thread 10 done.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]====|\u001b[38;5;246mPerforming CiC binning with thread 24 done.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]====|\u001b[38;5;246mPerforming CiC binning with thread 22 done.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]====|\u001b[38;5;246mPerforming CiC binning with thread 31 done.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]====|\u001b[38;5;246mPerforming CiC binning with thread 30 done.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]====|\u001b[38;5;246mPerforming CiC binning with thread 16 done.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]====|\u001b[38;5;246mPerforming CiC binning with thread 1 done.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]====|\u001b[38;5;246mPerforming CiC binning with thread 6 done.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]====|\u001b[38;5;246mPerforming CiC binning with thread 29 done.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]====|\u001b[38;5;246mPerforming CiC binning with thread 7 done.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]====|\u001b[38;5;246mPerforming CiC binning with thread 25 done.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]====|\u001b[38;5;246mPerforming CiC done.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]====|\u001b[38;5;246mPerforming CiC reduction...\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]====|\u001b[38;5;246mCorrectly freed memory allocated at 0x1489b0000b60 for threadedDensity[1] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]====|\u001b[38;5;246mCorrectly freed memory allocated at 0x1488e8000b60 for threadedDensity[2] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]====|\u001b[38;5;246mCorrectly freed memory allocated at 0x1489a0000b60 for threadedDensity[3] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]====|\u001b[38;5;246mCorrectly freed memory allocated at 0x1489b8000b60 for threadedDensity[4] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]====|\u001b[38;5;246mCorrectly freed memory allocated at 0x1488d0000b60 for threadedDensity[5] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]====|\u001b[38;5;246mCorrectly freed memory allocated at 0x1488e0000b60 for threadedDensity[6] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]====|\u001b[38;5;246mCorrectly freed memory allocated at 0x148970000b60 for threadedDensity[7] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]====|\u001b[38;5;246mCorrectly freed memory allocated at 0x148908000b60 for threadedDensity[8] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]====|\u001b[38;5;246mCorrectly freed memory allocated at 0x148950000b60 for threadedDensity[9] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]====|\u001b[38;5;246mCorrectly freed memory allocated at 0x148968000b60 for threadedDensity[10] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]====|\u001b[38;5;246mCorrectly freed memory allocated at 0x148980000b60 for threadedDensity[11] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]====|\u001b[38;5;246mCorrectly freed memory allocated at 0x148920000b60 for threadedDensity[12] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]====|\u001b[38;5;246mCorrectly freed memory allocated at 0x148960000b60 for threadedDensity[13] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]====|\u001b[38;5;246mCorrectly freed memory allocated at 0x148930000b60 for threadedDensity[14] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]====|\u001b[38;5;246mCorrectly freed memory allocated at 0x148918000b60 for threadedDensity[15] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]====|\u001b[38;5;246mCorrectly freed memory allocated at 0x148900000b60 for threadedDensity[16] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]====|\u001b[38;5;246mCorrectly freed memory allocated at 0x1488dc000b60 for threadedDensity[17] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]====|\u001b[38;5;246mCorrectly freed memory allocated at 0x148938000b60 for threadedDensity[18] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]====|\u001b[38;5;246mCorrectly freed memory allocated at 0x1488f8000b60 for threadedDensity[19] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]====|\u001b[38;5;246mCorrectly freed memory allocated at 0x148928000b60 for threadedDensity[20] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]====|\u001b[38;5;246mCorrectly freed memory allocated at 0x148990000b60 for threadedDensity[21] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]====|\u001b[38;5;246mCorrectly freed memory allocated at 0x148958000b60 for threadedDensity[22] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]====|\u001b[38;5;246mCorrectly freed memory allocated at 0x148910000b60 for threadedDensity[23] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]====|\u001b[38;5;246mCorrectly freed memory allocated at 0x1488f0000b60 for threadedDensity[24] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]====|\u001b[38;5;246mCorrectly freed memory allocated at 0x148998000b60 for threadedDensity[25] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]====|\u001b[38;5;246mCorrectly freed memory allocated at 0x148978000b60 for threadedDensity[26] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]====|\u001b[38;5;246mCorrectly freed memory allocated at 0x148940000b60 for threadedDensity[27] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]====|\u001b[38;5;246mCorrectly freed memory allocated at 0x148988000b60 for threadedDensity[28] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]====|\u001b[38;5;246mCorrectly freed memory allocated at 0x1488d8000b60 for threadedDensity[29] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]====|\u001b[38;5;246mCorrectly freed memory allocated at 0x1489a8000b60 for threadedDensity[30] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]====|\u001b[38;5;246mCorrectly freed memory allocated at 0x148948000b60 for threadedDensity[31] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]====|\u001b[38;5;246mPerforming CiC reduction done.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]==|Getting density contrast (using 32 cores and 32 arrays, parallel routine 1) done.\n",
"[02:24:41\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]==|Writing field to '/data70/hoellinger/WIP3M/forcediag1/nsteps20_final_density_spm.h5'...\n",
"[02:24:41\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]==|Writing field to '/data70/hoellinger/WIP3M/forcediag1/nsteps20_final_density_spm.h5' done.\n",
"[02:24:41\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]==|Writing header in '/data70/hoellinger/WIP3M/forcediag1/nsteps20_spm_snapshot.gadget3'...\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]======|\u001b[38;5;246mheader1.npart=[0 32768 0 0 0 0]\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]======|\u001b[38;5;246mheader1.mass=[1 69.0576 1 1 1 1]\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]======|\u001b[38;5;246mheader1.time=1.000000\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]======|\u001b[38;5;246mheader1.redshift=0.000000\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]======|\u001b[38;5;246mheader1.flag_sfr=0\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]======|\u001b[38;5;246mheader1.flag_feedback=0\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]======|\u001b[38;5;246mheader1.npartTotal=[0 32768 0 0 0 0]\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]======|\u001b[38;5;246mheader1.flag_cooling=0\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]======|\u001b[38;5;246mheader1.num_files=1\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]======|\u001b[38;5;246mheader1.BoxSize=64.000000\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]======|\u001b[38;5;246mheader1.Omega0=0.311100\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]======|\u001b[38;5;246mheader1.OmegaLambda=0.688900\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]======|\u001b[38;5;246mheader1.HubbleParam=0.676600\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]======|\u001b[38;5;246mheader1.flag_stellarage=0\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]======|\u001b[38;5;246mheader1.flag_metals=0\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]======|\u001b[38;5;246mheader1.npartTotalHighWord=[0 0 0 0 0 0]\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]======|\u001b[38;5;246mheader1.flag_entropy_instead_u=0\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]======|\u001b[38;5;246mheader1.flag_doubleprecision=0\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]======|\u001b[38;5;246mheader1.flag_ic_info=0\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]======|\u001b[38;5;246mheader1.lpt_scalingfactor=0\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]==|Writing header in '/data70/hoellinger/WIP3M/forcediag1/nsteps20_spm_snapshot.gadget3' done.\n",
"[02:24:41\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]==|Writing snapshot in '/data70/hoellinger/WIP3M/forcediag1/nsteps20_spm_snapshot.gadget3' (32768 particles)...\n",
"[02:24:41\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]====|Writing block: 'POS '...\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]======|\u001b[38;5;246mnpart_max=32768\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]======|\u001b[38;5;246mWriting chunk of size 32768, current particleID: n=0.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated memory (393216 bytes) at 0x55cb085f5ff0 for FloatBuffer in \u001b[38;5;227mio.c\u001b[0;36m:\u001b[38;5;192mwrite_hdf5_block\u001b[0;36m:\u001b[0;32m3644\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb085f5ff0 for FloatBuffer in \u001b[38;5;227mio.c\u001b[0;36m:\u001b[38;5;192mwrite_hdf5_block\u001b[0;36m:\u001b[0;32m3754\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]====|Writing block: 'POS ' done.\n",
"[02:24:41\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]====|Writing block: 'VEL '...\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]======|\u001b[38;5;246mnpart_max=32768\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]======|\u001b[38;5;246mWriting chunk of size 32768, current particleID: n=0.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated memory (393216 bytes) at 0x55cb085f5ff0 for FloatBuffer in \u001b[38;5;227mio.c\u001b[0;36m:\u001b[38;5;192mwrite_hdf5_block\u001b[0;36m:\u001b[0;32m3644\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb085f5ff0 for FloatBuffer in \u001b[38;5;227mio.c\u001b[0;36m:\u001b[38;5;192mwrite_hdf5_block\u001b[0;36m:\u001b[0;32m3754\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]====|Writing block: 'VEL ' done.\n",
"[02:24:41\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]====|Writing block: 'ID '...\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]======|\u001b[38;5;246mnpart_max=32768\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]======|\u001b[38;5;246mWriting chunk of size 32768, current particleID: n=0.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb085f5ff0 for ParticleIDtypeBuffer in \u001b[38;5;227mio.c\u001b[0;36m:\u001b[38;5;192mwrite_hdf5_block\u001b[0;36m:\u001b[0;32m3641\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb085f5ff0 for ParticleIDtypeBuffer in \u001b[38;5;227mio.c\u001b[0;36m:\u001b[38;5;192mwrite_hdf5_block\u001b[0;36m:\u001b[0;32m3751\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]====|Writing block: 'ID ' done.\n",
"[02:24:41\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]==|Writing snapshot in '/data70/hoellinger/WIP3M/forcediag1/nsteps20_spm_snapshot.gadget3' done.\n",
"[02:24:41\u001b[00m|\u001b[38;5;147mMODULE \u001b[00m]|\u001b[38;5;147mModulePMCOLA: Computing outputs done.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;159mTIMER \u001b[00m]|PMCOLA output: 0.856 CPU - 0.033 wallclock seconds used.\n",
"[02:24:41\u001b[00m|\u001b[38;5;159mTIMER \u001b[00m]|ModulePMCOLA: 373.252 CPU - 23.948 wallclock seconds used.\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08772540 for ICs_field.data in \u001b[38;5;227mmain.c\u001b[0;36m:\u001b[38;5;192mmain_sbmy\u001b[0;36m:\u001b[0;32m264\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb086a11f0 for PsiLPT in \u001b[38;5;227mmain.c\u001b[0;36m:\u001b[38;5;192mmain_sbmy\u001b[0;36m:\u001b[0;32m298\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0883bf60 for P.positions in \u001b[38;5;227mmain.c\u001b[0;36m:\u001b[38;5;192mmain_sbmy\u001b[0;36m:\u001b[0;32m323\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0889bf70 for P.velocities in \u001b[38;5;227mmain.c\u001b[0;36m:\u001b[38;5;192mmain_sbmy\u001b[0;36m:\u001b[0;32m323\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb087d1430 for P.ids in \u001b[38;5;227mmain.c\u001b[0;36m:\u001b[38;5;192mmain_sbmy\u001b[0;36m:\u001b[0;32m323\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb087f5810 for FCs_field.data in \u001b[38;5;227mmain.c\u001b[0;36m:\u001b[38;5;192mmain_sbmy\u001b[0;36m:\u001b[0;32m324\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]|\u001b[38;5;246m2478 calls to function malloc.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]|\u001b[38;5;246m2477 calls to function free.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;215mWARNING \u001b[00m]|\u001b[38;5;215mWarning: Memory management should be checked.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;159mTIMER \u001b[00m]|Simbelmynë: 379.534 CPU - 24.203 wallclock seconds used.\n",
"[02:24:41\u001b[00m|\u001b[38;5;117mINFO \u001b[00m]|Everything done successfully, exiting.\n",
"[02:24:41\u001b[00m|\u001b[38;5;227mCOMMAND \u001b[00m]|\u001b[38;5;227msimbelmyne /home/hoellinger/wip3m/results/forcediag1/nsteps20_example_p3m.sbmy /data70/hoellinger/WIP3M/forcediag1/logs/nsteps20_p3m.txt\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;117mINFO \u001b[00m]|\n",
"[02:24:41\u001b[00m|\u001b[38;5;117mINFO \u001b[00m]| .-~~-.--.\n",
"[02:24:41\u001b[00m|\u001b[38;5;117mINFO \u001b[00m]| : )\n",
"[02:24:41\u001b[00m|\u001b[38;5;117mINFO \u001b[00m]| .~ ~ -.\\ /.- ~~ .\n",
"[02:24:41\u001b[00m|\u001b[38;5;117mINFO \u001b[00m]| > `. .' <\n",
"[02:24:41\u001b[00m|\u001b[38;5;117mINFO \u001b[00m]| ( .- -. )\n",
"[02:24:41\u001b[00m|\u001b[38;5;117mINFO \u001b[00m]| `- -.-~ `- -' ~-.- -'\n",
"[02:24:41\u001b[00m|\u001b[38;5;117mINFO \u001b[00m]| ( : ) _ _ .-: ___________________________________\n",
"[02:24:41\u001b[00m|\u001b[38;5;117mINFO \u001b[00m]| ~--. : .--~ .-~ .-~ } \u001b[1;38;5;157mSIMBELMYNË\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;117mINFO \u001b[00m]| ~-.-^-.-~ \\_ .~ .-~ .~ (c) Florent Leclercq 2012 - SBMY_YEAR \n",
"[02:24:41\u001b[00m|\u001b[38;5;117mINFO \u001b[00m]| \\ ' \\ '_ _ -~ ___________________________________\n",
"[02:24:41\u001b[00m|\u001b[38;5;117mINFO \u001b[00m]| `.`. //\n",
"[02:24:41\u001b[00m|\u001b[38;5;117mINFO \u001b[00m]| . - ~ ~-.__`.`-.//\n",
"[02:24:41\u001b[00m|\u001b[38;5;117mINFO \u001b[00m]| .-~ . - ~ }~ ~ ~-.~-.\n",
"[02:24:41\u001b[00m|\u001b[38;5;117mINFO \u001b[00m]| .' .-~ .-~ :/~-.~-./:\n",
"[02:24:41\u001b[00m|\u001b[38;5;117mINFO \u001b[00m]| /_~_ _ . - ~ ~-.~-._\n",
"[02:24:41\u001b[00m|\u001b[38;5;117mINFO \u001b[00m]| ~-.<\n",
"[02:24:41\u001b[00m|\u001b[38;5;117mINFO \u001b[00m]|\n",
"[02:24:41\u001b[00m|\u001b[38;5;117mINFO \u001b[00m]|2025-05-22 02:24:41: Starting SIMBELMYNË, commit hash 860f12de187bb46026620362f000d9aa8bc3fb41\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]|\u001b[38;5;246mDebug mode ON\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]|Reading parameter file in '/home/hoellinger/wip3m/results/forcediag1/nsteps20_example_p3m.sbmy'...\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly allocated memory (160232 bytes) at 0x55cb0883bf60 for hashtab in \u001b[38;5;227mread_param.c\u001b[0;36m:\u001b[38;5;192mread_parameterfile\u001b[0;36m:\u001b[0;32m347\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly allocated memory (32 bytes) at 0x55cb087c0500 for SnapFormat in \u001b[38;5;227mread_param.c\u001b[0;36m:\u001b[38;5;192mhash_set\u001b[0;36m:\u001b[0;32m43\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly allocated memory (32 bytes) at 0x55cb087c0530 for NumFilesPerSnapshot in \u001b[38;5;227mread_param.c\u001b[0;36m:\u001b[38;5;192mhash_set\u001b[0;36m:\u001b[0;32m43\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly allocated memory (32 bytes) at 0x55cb087976d0 for ModuleLPT in \u001b[38;5;227mread_param.c\u001b[0;36m:\u001b[38;5;192mhash_set\u001b[0;36m:\u001b[0;32m43\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly allocated memory (32 bytes) at 0x55cb08798350 for InputRngStateLPT in \u001b[38;5;227mread_param.c\u001b[0;36m:\u001b[38;5;192mhash_set\u001b[0;36m:\u001b[0;32m43\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly allocated memory (32 bytes) at 0x55cb087c0740 for OutputRngStateLPT in \u001b[38;5;227mread_param.c\u001b[0;36m:\u001b[38;5;192mhash_set\u001b[0;36m:\u001b[0;32m43\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly allocated memory (32 bytes) at 0x55cb087c07e0 for Particles in \u001b[38;5;227mread_param.c\u001b[0;36m:\u001b[38;5;192mhash_set\u001b[0;36m:\u001b[0;32m43\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly allocated memory (32 bytes) at 0x55cb08826250 for Mesh in \u001b[38;5;227mread_param.c\u001b[0;36m:\u001b[38;5;192mhash_set\u001b[0;36m:\u001b[0;32m43\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly allocated memory (32 bytes) at 0x55cb08797130 for BoxSize in \u001b[38;5;227mread_param.c\u001b[0;36m:\u001b[38;5;192mhash_set\u001b[0;36m:\u001b[0;32m43\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly allocated memory (32 bytes) at 0x55cb08794360 for corner0 in \u001b[38;5;227mread_param.c\u001b[0;36m:\u001b[38;5;192mhash_set\u001b[0;36m:\u001b[0;32m43\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly allocated memory (32 bytes) at 0x55cb08797540 for corner1 in \u001b[38;5;227mread_param.c\u001b[0;36m:\u001b[38;5;192mhash_set\u001b[0;36m:\u001b[0;32m43\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly allocated memory (32 bytes) at 0x55cb08796ee0 for corner2 in \u001b[38;5;227mread_param.c\u001b[0;36m:\u001b[38;5;192mhash_set\u001b[0;36m:\u001b[0;32m43\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly allocated memory (32 bytes) at 0x55cb0883acd0 for ICsMode in \u001b[38;5;227mread_param.c\u001b[0;36m:\u001b[38;5;192mhash_set\u001b[0;36m:\u001b[0;32m43\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly allocated memory (32 bytes) at 0x55cb08796f30 for WriteICsRngState in \u001b[38;5;227mread_param.c\u001b[0;36m:\u001b[38;5;192mhash_set\u001b[0;36m:\u001b[0;32m43\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly allocated memory (32 bytes) at 0x55cb0883af50 for OutputICsRngState in \u001b[38;5;227mread_param.c\u001b[0;36m:\u001b[38;5;192mhash_set\u001b[0;36m:\u001b[0;32m43\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly allocated memory (32 bytes) at 0x55cb087a4a90 for WriteWhiteNoise in \u001b[38;5;227mread_param.c\u001b[0;36m:\u001b[38;5;192mhash_set\u001b[0;36m:\u001b[0;32m43\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly allocated memory (32 bytes) at 0x55cb08797270 for OutputWhiteNoise in \u001b[38;5;227mread_param.c\u001b[0;36m:\u001b[38;5;192mhash_set\u001b[0;36m:\u001b[0;32m43\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly allocated memory (32 bytes) at 0x55cb087974a0 for InputWhiteNoise in \u001b[38;5;227mread_param.c\u001b[0;36m:\u001b[38;5;192mhash_set\u001b[0;36m:\u001b[0;32m43\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly allocated memory (32 bytes) at 0x55cb08792ae0 for InputInitialConditions in \u001b[38;5;227mread_param.c\u001b[0;36m:\u001b[38;5;192mhash_set\u001b[0;36m:\u001b[0;32m43\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly allocated memory (32 bytes) at 0x55cb08792b30 for WriteInitialConditions in \u001b[38;5;227mread_param.c\u001b[0;36m:\u001b[38;5;192mhash_set\u001b[0;36m:\u001b[0;32m43\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly allocated memory (32 bytes) at 0x55cb087a4b30 for OutputInitialConditions in \u001b[38;5;227mread_param.c\u001b[0;36m:\u001b[38;5;192mhash_set\u001b[0;36m:\u001b[0;32m43\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly allocated memory (32 bytes) at 0x55cb0879faa0 for InputPowerSpectrum in \u001b[38;5;227mread_param.c\u001b[0;36m:\u001b[38;5;192mhash_set\u001b[0;36m:\u001b[0;32m43\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly allocated memory (32 bytes) at 0x55cb08798620 for RedshiftLPT in \u001b[38;5;227mread_param.c\u001b[0;36m:\u001b[38;5;192mhash_set\u001b[0;36m:\u001b[0;32m43\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly allocated memory (32 bytes) at 0x55cb087a4950 for WriteLPTSnapshot in \u001b[38;5;227mread_param.c\u001b[0;36m:\u001b[38;5;192mhash_set\u001b[0;36m:\u001b[0;32m43\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly allocated memory (32 bytes) at 0x55cb087a4bd0 for OutputLPTSnapshot in \u001b[38;5;227mread_param.c\u001b[0;36m:\u001b[38;5;192mhash_set\u001b[0;36m:\u001b[0;32m43\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly allocated memory (32 bytes) at 0x55cb087c0770 for WriteLPTDensity in \u001b[38;5;227mread_param.c\u001b[0;36m:\u001b[38;5;192mhash_set\u001b[0;36m:\u001b[0;32m43\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly allocated memory (32 bytes) at 0x55cb087c0710 for OutputLPTDensity in \u001b[38;5;227mread_param.c\u001b[0;36m:\u001b[38;5;192mhash_set\u001b[0;36m:\u001b[0;32m43\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly allocated memory (32 bytes) at 0x55cb0883ac80 for WriteLPTDisplacements in \u001b[38;5;227mread_param.c\u001b[0;36m:\u001b[38;5;192mhash_set\u001b[0;36m:\u001b[0;32m43\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly allocated memory (32 bytes) at 0x55cb08792950 for OutputPsiLPT1 in \u001b[38;5;227mread_param.c\u001b[0;36m:\u001b[38;5;192mhash_set\u001b[0;36m:\u001b[0;32m43\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly allocated memory (32 bytes) at 0x55cb0883ad70 for OutputPsiLPT2 in \u001b[38;5;227mread_param.c\u001b[0;36m:\u001b[38;5;192mhash_set\u001b[0;36m:\u001b[0;32m43\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly allocated memory (32 bytes) at 0x55cb087acc60 for ModulePMCOLA in \u001b[38;5;227mread_param.c\u001b[0;36m:\u001b[38;5;192mhash_set\u001b[0;36m:\u001b[0;32m43\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly allocated memory (32 bytes) at 0x55cb0883b130 for InputPMCOLASnapshot in \u001b[38;5;227mread_param.c\u001b[0;36m:\u001b[38;5;192mhash_set\u001b[0;36m:\u001b[0;32m43\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly allocated memory (32 bytes) at 0x55cb0883b040 for InputPsiLPT1 in \u001b[38;5;227mread_param.c\u001b[0;36m:\u001b[38;5;192mhash_set\u001b[0;36m:\u001b[0;32m43\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly allocated memory (32 bytes) at 0x55cb087973b0 for InputPsiLPT2 in \u001b[38;5;227mread_param.c\u001b[0;36m:\u001b[38;5;192mhash_set\u001b[0;36m:\u001b[0;32m43\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly allocated memory (32 bytes) at 0x55cb087929a0 for IsNonZeroInitialMomenta in \u001b[38;5;227mread_param.c\u001b[0;36m:\u001b[38;5;192mhash_set\u001b[0;36m:\u001b[0;32m43\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly allocated memory (32 bytes) at 0x55cb087970e0 for InputInitialMomenta in \u001b[38;5;227mread_param.c\u001b[0;36m:\u001b[38;5;192mhash_set\u001b[0;36m:\u001b[0;32m43\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly allocated memory (32 bytes) at 0x55cb087986c0 for EvolutionMode in \u001b[38;5;227mread_param.c\u001b[0;36m:\u001b[38;5;192mhash_set\u001b[0;36m:\u001b[0;32m43\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly allocated memory (32 bytes) at 0x55cb08792a90 for ParticleMesh in \u001b[38;5;227mread_param.c\u001b[0;36m:\u001b[38;5;192mhash_set\u001b[0;36m:\u001b[0;32m43\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly allocated memory (32 bytes) at 0x55cb08797310 for TimeStepDistribution in \u001b[38;5;227mread_param.c\u001b[0;36m:\u001b[38;5;192mhash_set\u001b[0;36m:\u001b[0;32m43\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly allocated memory (32 bytes) at 0x55cb08796f80 for ModifiedDiscretization in \u001b[38;5;227mread_param.c\u001b[0;36m:\u001b[38;5;192mhash_set\u001b[0;36m:\u001b[0;32m43\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly allocated memory (32 bytes) at 0x55cb087bddf0 for n_LPT in \u001b[38;5;227mread_param.c\u001b[0;36m:\u001b[38;5;192mhash_set\u001b[0;36m:\u001b[0;32m43\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly allocated memory (32 bytes) at 0x55cb08796e30 for n_Tiles in \u001b[38;5;227mread_param.c\u001b[0;36m:\u001b[38;5;192mhash_set\u001b[0;36m:\u001b[0;32m43\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly allocated memory (32 bytes) at 0x55cb08826210 for nPairsForceDiagnostic in \u001b[38;5;227mread_param.c\u001b[0;36m:\u001b[38;5;192mhash_set\u001b[0;36m:\u001b[0;32m43\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly allocated memory (32 bytes) at 0x55cb08826190 for nBinsForceDiagnostic in \u001b[38;5;227mread_param.c\u001b[0;36m:\u001b[38;5;192mhash_set\u001b[0;36m:\u001b[0;32m43\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly allocated memory (32 bytes) at 0x55cb087acd00 for maxTrialsForceDiagnostic in \u001b[38;5;227mread_param.c\u001b[0;36m:\u001b[38;5;192mhash_set\u001b[0;36m:\u001b[0;32m43\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly allocated memory (32 bytes) at 0x55cb08838fc0 for OutputForceDiagnostic in \u001b[38;5;227mread_param.c\u001b[0;36m:\u001b[38;5;192mhash_set\u001b[0;36m:\u001b[0;32m43\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly allocated memory (32 bytes) at 0x55cb0879c7e0 for RunForceDiagnostic in \u001b[38;5;227mread_param.c\u001b[0;36m:\u001b[38;5;192mhash_set\u001b[0;36m:\u001b[0;32m43\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly allocated memory (32 bytes) at 0x55cb0879f960 for WriteSnapshots in \u001b[38;5;227mread_param.c\u001b[0;36m:\u001b[38;5;192mhash_set\u001b[0;36m:\u001b[0;32m43\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly allocated memory (32 bytes) at 0x55cb087f2740 for OutputSnapshotsBase in \u001b[38;5;227mread_param.c\u001b[0;36m:\u001b[38;5;192mhash_set\u001b[0;36m:\u001b[0;32m43\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly allocated memory (32 bytes) at 0x55cb08794540 for OutputSnapshotsExt in \u001b[38;5;227mread_param.c\u001b[0;36m:\u001b[38;5;192mhash_set\u001b[0;36m:\u001b[0;32m43\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly allocated memory (32 bytes) at 0x55cb087c05f0 for WriteDensities in \u001b[38;5;227mread_param.c\u001b[0;36m:\u001b[38;5;192mhash_set\u001b[0;36m:\u001b[0;32m43\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly allocated memory (32 bytes) at 0x55cb087c0620 for OutputDensitiesBase in \u001b[38;5;227mread_param.c\u001b[0;36m:\u001b[38;5;192mhash_set\u001b[0;36m:\u001b[0;32m43\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly allocated memory (32 bytes) at 0x55cb087c08e0 for OutputDensitiesExt in \u001b[38;5;227mread_param.c\u001b[0;36m:\u001b[38;5;192mhash_set\u001b[0;36m:\u001b[0;32m43\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly allocated memory (32 bytes) at 0x55cb087f2070 for RedshiftFCs in \u001b[38;5;227mread_param.c\u001b[0;36m:\u001b[38;5;192mhash_set\u001b[0;36m:\u001b[0;32m43\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly allocated memory (32 bytes) at 0x55cb087a1fb0 for WriteFinalSnapshot in \u001b[38;5;227mread_param.c\u001b[0;36m:\u001b[38;5;192mhash_set\u001b[0;36m:\u001b[0;32m43\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly allocated memory (32 bytes) at 0x55cb087a1fe0 for OutputFinalSnapshot in \u001b[38;5;227mread_param.c\u001b[0;36m:\u001b[38;5;192mhash_set\u001b[0;36m:\u001b[0;32m43\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly allocated memory (32 bytes) at 0x55cb087c04b0 for WriteFinalDensity in \u001b[38;5;227mread_param.c\u001b[0;36m:\u001b[38;5;192mhash_set\u001b[0;36m:\u001b[0;32m43\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly allocated memory (32 bytes) at 0x55cb08794400 for OutputFinalDensity in \u001b[38;5;227mread_param.c\u001b[0;36m:\u001b[38;5;192mhash_set\u001b[0;36m:\u001b[0;32m43\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly allocated memory (32 bytes) at 0x55cb08794450 for WriteReferenceFrame in \u001b[38;5;227mread_param.c\u001b[0;36m:\u001b[38;5;192mhash_set\u001b[0;36m:\u001b[0;32m43\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly allocated memory (32 bytes) at 0x55cb08797c50 for OutputMomentaBase in \u001b[38;5;227mread_param.c\u001b[0;36m:\u001b[38;5;192mhash_set\u001b[0;36m:\u001b[0;32m43\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly allocated memory (32 bytes) at 0x55cb087bba70 for OutputMomentaExt in \u001b[38;5;227mread_param.c\u001b[0;36m:\u001b[38;5;192mhash_set\u001b[0;36m:\u001b[0;32m43\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly allocated memory (32 bytes) at 0x55cb087bbac0 for ReadReferenceFrame in \u001b[38;5;227mread_param.c\u001b[0;36m:\u001b[38;5;192mhash_set\u001b[0;36m:\u001b[0;32m43\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly allocated memory (32 bytes) at 0x55cb087942c0 for InputMomentaBase in \u001b[38;5;227mread_param.c\u001b[0;36m:\u001b[38;5;192mhash_set\u001b[0;36m:\u001b[0;32m43\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly allocated memory (32 bytes) at 0x55cb087caa20 for InputMomentaExt in \u001b[38;5;227mread_param.c\u001b[0;36m:\u001b[38;5;192mhash_set\u001b[0;36m:\u001b[0;32m43\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly allocated memory (32 bytes) at 0x55cb087caa50 for NumberOfTilesPerDimension in \u001b[38;5;227mread_param.c\u001b[0;36m:\u001b[38;5;192mhash_set\u001b[0;36m:\u001b[0;32m43\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly allocated memory (32 bytes) at 0x55cb0825a390 for NumberOfParticlesInBuffer in \u001b[38;5;227mread_param.c\u001b[0;36m:\u001b[38;5;192mhash_set\u001b[0;36m:\u001b[0;32m43\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly allocated memory (32 bytes) at 0x55cb0825a3f0 for OutputLPTPotential1 in \u001b[38;5;227mread_param.c\u001b[0;36m:\u001b[38;5;192mhash_set\u001b[0;36m:\u001b[0;32m43\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly allocated memory (32 bytes) at 0x55cb08209450 for OutputLPTPotential2 in \u001b[38;5;227mread_param.c\u001b[0;36m:\u001b[38;5;192mhash_set\u001b[0;36m:\u001b[0;32m43\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly allocated memory (32 bytes) at 0x55cb08209480 for OutputTilesBase in \u001b[38;5;227mread_param.c\u001b[0;36m:\u001b[38;5;192mhash_set\u001b[0;36m:\u001b[0;32m43\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly allocated memory (32 bytes) at 0x55cb082094d0 for OutputTilesExt in \u001b[38;5;227mread_param.c\u001b[0;36m:\u001b[38;5;192mhash_set\u001b[0;36m:\u001b[0;32m43\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly allocated memory (32 bytes) at 0x55cb088260a0 for ModuleRSD in \u001b[38;5;227mread_param.c\u001b[0;36m:\u001b[38;5;192mhash_set\u001b[0;36m:\u001b[0;32m43\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly allocated memory (32 bytes) at 0x55cb088260f0 for DoNonLinearMapping in \u001b[38;5;227mread_param.c\u001b[0;36m:\u001b[38;5;192mhash_set\u001b[0;36m:\u001b[0;32m43\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly allocated memory (32 bytes) at 0x55cb088350d0 for vobs0 in \u001b[38;5;227mread_param.c\u001b[0;36m:\u001b[38;5;192mhash_set\u001b[0;36m:\u001b[0;32m43\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly allocated memory (32 bytes) at 0x55cb08835120 for vobs1 in \u001b[38;5;227mread_param.c\u001b[0;36m:\u001b[38;5;192mhash_set\u001b[0;36m:\u001b[0;32m43\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly allocated memory (32 bytes) at 0x55cb08835170 for vobs2 in \u001b[38;5;227mread_param.c\u001b[0;36m:\u001b[38;5;192mhash_set\u001b[0;36m:\u001b[0;32m43\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly allocated memory (32 bytes) at 0x55cb087c0330 for alpha1RSD in \u001b[38;5;227mread_param.c\u001b[0;36m:\u001b[38;5;192mhash_set\u001b[0;36m:\u001b[0;32m43\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly allocated memory (32 bytes) at 0x55cb087c0380 for DoLPTSplit in \u001b[38;5;227mread_param.c\u001b[0;36m:\u001b[38;5;192mhash_set\u001b[0;36m:\u001b[0;32m43\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly allocated memory (32 bytes) at 0x55cb087c03d0 for alpha2RSD in \u001b[38;5;227mread_param.c\u001b[0;36m:\u001b[38;5;192mhash_set\u001b[0;36m:\u001b[0;32m43\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly allocated memory (32 bytes) at 0x55cb08796a60 for WriteRSSnapshot in \u001b[38;5;227mread_param.c\u001b[0;36m:\u001b[38;5;192mhash_set\u001b[0;36m:\u001b[0;32m43\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly allocated memory (32 bytes) at 0x55cb08796ab0 for OutputRSSnapshot in \u001b[38;5;227mread_param.c\u001b[0;36m:\u001b[38;5;192mhash_set\u001b[0;36m:\u001b[0;32m43\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly allocated memory (32 bytes) at 0x55cb08796b00 for WriteRSDensity in \u001b[38;5;227mread_param.c\u001b[0;36m:\u001b[38;5;192mhash_set\u001b[0;36m:\u001b[0;32m43\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly allocated memory (32 bytes) at 0x55cb08797de0 for OutputRSDensity in \u001b[38;5;227mread_param.c\u001b[0;36m:\u001b[38;5;192mhash_set\u001b[0;36m:\u001b[0;32m43\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly allocated memory (32 bytes) at 0x55cb08797e30 for ModuleMocks in \u001b[38;5;227mread_param.c\u001b[0;36m:\u001b[38;5;192mhash_set\u001b[0;36m:\u001b[0;32m43\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly allocated memory (32 bytes) at 0x55cb08797e80 for InputRngStateMocks in \u001b[38;5;227mread_param.c\u001b[0;36m:\u001b[38;5;192mhash_set\u001b[0;36m:\u001b[0;32m43\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly allocated memory (32 bytes) at 0x55cb087977a0 for OutputRngStateMocks in \u001b[38;5;227mread_param.c\u001b[0;36m:\u001b[38;5;192mhash_set\u001b[0;36m:\u001b[0;32m43\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly allocated memory (32 bytes) at 0x55cb087977f0 for WriteMocksRngState in \u001b[38;5;227mread_param.c\u001b[0;36m:\u001b[38;5;192mhash_set\u001b[0;36m:\u001b[0;32m43\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly allocated memory (32 bytes) at 0x55cb08797840 for OutputMocksRngState in \u001b[38;5;227mread_param.c\u001b[0;36m:\u001b[38;5;192mhash_set\u001b[0;36m:\u001b[0;32m43\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly allocated memory (32 bytes) at 0x55cb0879f080 for NoiseModel in \u001b[38;5;227mread_param.c\u001b[0;36m:\u001b[38;5;192mhash_set\u001b[0;36m:\u001b[0;32m43\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly allocated memory (32 bytes) at 0x55cb0879f0b0 for NumberOfNoiseRealizations in \u001b[38;5;227mread_param.c\u001b[0;36m:\u001b[38;5;192mhash_set\u001b[0;36m:\u001b[0;32m43\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly allocated memory (32 bytes) at 0x55cb0879f110 for InputDensityMocks in \u001b[38;5;227mread_param.c\u001b[0;36m:\u001b[38;5;192mhash_set\u001b[0;36m:\u001b[0;32m43\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly allocated memory (32 bytes) at 0x55cb0879f160 for InputSurveyGeometry in \u001b[38;5;227mread_param.c\u001b[0;36m:\u001b[38;5;192mhash_set\u001b[0;36m:\u001b[0;32m43\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly allocated memory (32 bytes) at 0x55cb087abb80 for InputSummaryStatskGrid in \u001b[38;5;227mread_param.c\u001b[0;36m:\u001b[38;5;192mhash_set\u001b[0;36m:\u001b[0;32m43\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly allocated memory (32 bytes) at 0x55cb087abbd0 for WriteMocks in \u001b[38;5;227mread_param.c\u001b[0;36m:\u001b[38;5;192mhash_set\u001b[0;36m:\u001b[0;32m43\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly allocated memory (32 bytes) at 0x55cb087abc20 for OutputMockBase in \u001b[38;5;227mread_param.c\u001b[0;36m:\u001b[38;5;192mhash_set\u001b[0;36m:\u001b[0;32m43\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly allocated memory (32 bytes) at 0x55cb087993d0 for OutputMockExt in \u001b[38;5;227mread_param.c\u001b[0;36m:\u001b[38;5;192mhash_set\u001b[0;36m:\u001b[0;32m43\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly allocated memory (32 bytes) at 0x55cb08799420 for WriteSummaryStats in \u001b[38;5;227mread_param.c\u001b[0;36m:\u001b[38;5;192mhash_set\u001b[0;36m:\u001b[0;32m43\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly allocated memory (32 bytes) at 0x55cb08799470 for OutputSummaryStats in \u001b[38;5;227mread_param.c\u001b[0;36m:\u001b[38;5;192mhash_set\u001b[0;36m:\u001b[0;32m43\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly allocated memory (32 bytes) at 0x55cb087994c0 for h in \u001b[38;5;227mread_param.c\u001b[0;36m:\u001b[38;5;192mhash_set\u001b[0;36m:\u001b[0;32m43\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly allocated memory (32 bytes) at 0x55cb0879c450 for Omega_r in \u001b[38;5;227mread_param.c\u001b[0;36m:\u001b[38;5;192mhash_set\u001b[0;36m:\u001b[0;32m43\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly allocated memory (32 bytes) at 0x55cb0879c4a0 for Omega_q in \u001b[38;5;227mread_param.c\u001b[0;36m:\u001b[38;5;192mhash_set\u001b[0;36m:\u001b[0;32m43\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly allocated memory (32 bytes) at 0x55cb0879c4f0 for Omega_b in \u001b[38;5;227mread_param.c\u001b[0;36m:\u001b[38;5;192mhash_set\u001b[0;36m:\u001b[0;32m43\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly allocated memory (32 bytes) at 0x55cb0879c540 for Omega_m in \u001b[38;5;227mread_param.c\u001b[0;36m:\u001b[38;5;192mhash_set\u001b[0;36m:\u001b[0;32m43\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly allocated memory (32 bytes) at 0x55cb0879c590 for Omega_k in \u001b[38;5;227mread_param.c\u001b[0;36m:\u001b[38;5;192mhash_set\u001b[0;36m:\u001b[0;32m43\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly allocated memory (32 bytes) at 0x55cb087bdbe0 for n_s in \u001b[38;5;227mread_param.c\u001b[0;36m:\u001b[38;5;192mhash_set\u001b[0;36m:\u001b[0;32m43\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly allocated memory (32 bytes) at 0x55cb087bdc30 for sigma8 in \u001b[38;5;227mread_param.c\u001b[0;36m:\u001b[38;5;192mhash_set\u001b[0;36m:\u001b[0;32m43\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly allocated memory (32 bytes) at 0x55cb087bdc80 for w0_fld in \u001b[38;5;227mread_param.c\u001b[0;36m:\u001b[38;5;192mhash_set\u001b[0;36m:\u001b[0;32m43\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly allocated memory (32 bytes) at 0x55cb087bdcd0 for wa_fld in \u001b[38;5;227mread_param.c\u001b[0;36m:\u001b[38;5;192mhash_set\u001b[0;36m:\u001b[0;32m43\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]==|\u001b[38;5;246mFound tag: 'SnapFormat'.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]==|\u001b[38;5;246mFound tag: 'NumFilesPerSnapshot'.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]==|\u001b[38;5;246mFound tag: 'ModuleLPT'.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]==|\u001b[38;5;246mFound tag: 'InputRngStateLPT'.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]==|\u001b[38;5;246mFound tag: 'OutputRngStateLPT'.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]==|\u001b[38;5;246mFound tag: 'Particles'.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]==|\u001b[38;5;246mFound tag: 'Mesh'.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]==|\u001b[38;5;246mFound tag: 'BoxSize'.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]==|\u001b[38;5;246mFound tag: 'corner0'.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]==|\u001b[38;5;246mFound tag: 'corner1'.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]==|\u001b[38;5;246mFound tag: 'corner2'.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]==|\u001b[38;5;246mFound tag: 'ICsMode'.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]==|\u001b[38;5;246mFound tag: 'WriteICsRngState'.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]==|\u001b[38;5;246mFound tag: 'OutputICsRngState'.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]==|\u001b[38;5;246mFound tag: 'WriteWhiteNoise'.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]==|\u001b[38;5;246mFound tag: 'OutputWhiteNoise'.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]==|\u001b[38;5;246mFound tag: 'InputWhiteNoise'.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]==|\u001b[38;5;246mFound tag: 'InputInitialConditions'.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]==|\u001b[38;5;246mFound tag: 'WriteInitialConditions'.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]==|\u001b[38;5;246mFound tag: 'OutputInitialConditions'.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]==|\u001b[38;5;246mFound tag: 'InputPowerSpectrum'.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]==|\u001b[38;5;246mFound tag: 'RedshiftLPT'.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]==|\u001b[38;5;246mFound tag: 'WriteLPTSnapshot'.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]==|\u001b[38;5;246mFound tag: 'OutputLPTSnapshot'.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]==|\u001b[38;5;246mFound tag: 'WriteLPTDensity'.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]==|\u001b[38;5;246mFound tag: 'OutputLPTDensity'.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]==|\u001b[38;5;246mFound tag: 'WriteLPTDisplacements'.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]==|\u001b[38;5;246mFound tag: 'OutputPsiLPT1'.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]==|\u001b[38;5;246mFound tag: 'OutputPsiLPT2'.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]==|\u001b[38;5;246mFound tag: 'ModulePMCOLA'.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]==|\u001b[38;5;246mFound tag: 'InputPMCOLASnapshot'.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]==|\u001b[38;5;246mFound tag: 'InputPsiLPT1'.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]==|\u001b[38;5;246mFound tag: 'InputPsiLPT2'.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]==|\u001b[38;5;246mFound tag: 'IsNonZeroInitialMomenta'.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]==|\u001b[38;5;246mFound tag: 'InputInitialMomenta'.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]==|\u001b[38;5;246mFound tag: 'EvolutionMode'.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]==|\u001b[38;5;246mFound tag: 'ParticleMesh'.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]==|\u001b[38;5;246mFound tag: 'TimeStepDistribution'.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]==|\u001b[38;5;246mFound tag: 'ModifiedDiscretization'.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]==|\u001b[38;5;246mFound tag: 'n_LPT'.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]==|\u001b[38;5;246mFound tag: 'WriteSnapshots'.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]==|\u001b[38;5;246mFound tag: 'OutputSnapshotsBase'.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]==|\u001b[38;5;246mFound tag: 'OutputSnapshotsExt'.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]==|\u001b[38;5;246mFound tag: 'WriteDensities'.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]==|\u001b[38;5;246mFound tag: 'OutputDensitiesBase'.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]==|\u001b[38;5;246mFound tag: 'OutputDensitiesExt'.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]==|\u001b[38;5;246mFound tag: 'RedshiftFCs'.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]==|\u001b[38;5;246mFound tag: 'WriteFinalSnapshot'.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]==|\u001b[38;5;246mFound tag: 'OutputFinalSnapshot'.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]==|\u001b[38;5;246mFound tag: 'WriteFinalDensity'.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]==|\u001b[38;5;246mFound tag: 'OutputFinalDensity'.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]==|\u001b[38;5;246mFound tag: 'WriteReferenceFrame'.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]==|\u001b[38;5;246mFound tag: 'OutputMomentaBase'.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]==|\u001b[38;5;246mFound tag: 'OutputMomentaExt'.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]==|\u001b[38;5;246mFound tag: 'ReadReferenceFrame'.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]==|\u001b[38;5;246mFound tag: 'InputMomentaBase'.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]==|\u001b[38;5;246mFound tag: 'InputMomentaExt'.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]==|\u001b[38;5;246mFound tag: 'NumberOfTilesPerDimension'.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]==|\u001b[38;5;246mFound tag: 'NumberOfParticlesInBuffer'.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]==|\u001b[38;5;246mFound tag: 'OutputLPTPotential1'.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]==|\u001b[38;5;246mFound tag: 'OutputLPTPotential2'.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]==|\u001b[38;5;246mFound tag: 'OutputTilesBase'.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]==|\u001b[38;5;246mFound tag: 'OutputTilesExt'.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]==|\u001b[38;5;246mFound tag: 'n_Tiles'.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]==|\u001b[38;5;246mFound tag: 'nPairsForceDiagnostic'.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]==|\u001b[38;5;246mFound tag: 'nBinsForceDiagnostic'.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]==|\u001b[38;5;246mFound tag: 'maxTrialsForceDiagnostic'.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]==|\u001b[38;5;246mFound tag: 'OutputForceDiagnostic'.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]==|\u001b[38;5;246mFound tag: 'RunForceDiagnostic'.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]==|\u001b[38;5;246mFound tag: 'ModuleRSD'.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]==|\u001b[38;5;246mFound tag: 'DoNonLinearMapping'.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]==|\u001b[38;5;246mFound tag: 'vobs0'.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]==|\u001b[38;5;246mFound tag: 'vobs1'.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]==|\u001b[38;5;246mFound tag: 'vobs2'.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]==|\u001b[38;5;246mFound tag: 'alpha1RSD'.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]==|\u001b[38;5;246mFound tag: 'DoLPTSplit'.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]==|\u001b[38;5;246mFound tag: 'alpha2RSD'.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]==|\u001b[38;5;246mFound tag: 'WriteRSSnapshot'.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]==|\u001b[38;5;246mFound tag: 'OutputRSSnapshot'.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]==|\u001b[38;5;246mFound tag: 'WriteRSDensity'.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]==|\u001b[38;5;246mFound tag: 'OutputRSDensity'.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]==|\u001b[38;5;246mFound tag: 'ModuleMocks'.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]==|\u001b[38;5;246mFound tag: 'InputRngStateMocks'.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]==|\u001b[38;5;246mFound tag: 'OutputRngStateMocks'.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]==|\u001b[38;5;246mFound tag: 'WriteMocksRngState'.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]==|\u001b[38;5;246mFound tag: 'OutputMocksRngState'.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]==|\u001b[38;5;246mFound tag: 'NoiseModel'.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]==|\u001b[38;5;246mFound tag: 'NumberOfNoiseRealizations'.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]==|\u001b[38;5;246mFound tag: 'InputDensityMocks'.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]==|\u001b[38;5;246mFound tag: 'InputSurveyGeometry'.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]==|\u001b[38;5;246mFound tag: 'InputSummaryStatskGrid'.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]==|\u001b[38;5;246mFound tag: 'WriteMocks'.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]==|\u001b[38;5;246mFound tag: 'OutputMockBase'.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]==|\u001b[38;5;246mFound tag: 'OutputMockExt'.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]==|\u001b[38;5;246mFound tag: 'WriteSummaryStats'.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]==|\u001b[38;5;246mFound tag: 'OutputSummaryStats'.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]==|\u001b[38;5;246mFound tag: 'h'.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]==|\u001b[38;5;246mFound tag: 'Omega_r'.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]==|\u001b[38;5;246mFound tag: 'Omega_q'.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]==|\u001b[38;5;246mFound tag: 'Omega_b'.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]==|\u001b[38;5;246mFound tag: 'Omega_m'.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]==|\u001b[38;5;246mFound tag: 'Omega_k'.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]==|\u001b[38;5;246mFound tag: 'n_s'.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]==|\u001b[38;5;246mFound tag: 'sigma8'.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]==|\u001b[38;5;246mFound tag: 'w0_fld'.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]==|\u001b[38;5;246mFound tag: 'wa_fld'.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]==|\u001b[38;5;246mReached the end of the parameter file.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb087c0500 for SnapFormat in \u001b[38;5;227mread_param.c\u001b[0;36m:\u001b[38;5;192mhash_unset\u001b[0;36m:\u001b[0;32m71\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb087c0530 for NumFilesPerSnapshot in \u001b[38;5;227mread_param.c\u001b[0;36m:\u001b[38;5;192mhash_unset\u001b[0;36m:\u001b[0;32m71\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb087976d0 for ModuleLPT in \u001b[38;5;227mread_param.c\u001b[0;36m:\u001b[38;5;192mhash_unset\u001b[0;36m:\u001b[0;32m71\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08798350 for InputRngStateLPT in \u001b[38;5;227mread_param.c\u001b[0;36m:\u001b[38;5;192mhash_unset\u001b[0;36m:\u001b[0;32m71\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb087c0740 for OutputRngStateLPT in \u001b[38;5;227mread_param.c\u001b[0;36m:\u001b[38;5;192mhash_unset\u001b[0;36m:\u001b[0;32m71\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb087c07e0 for Particles in \u001b[38;5;227mread_param.c\u001b[0;36m:\u001b[38;5;192mhash_unset\u001b[0;36m:\u001b[0;32m71\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08826250 for Mesh in \u001b[38;5;227mread_param.c\u001b[0;36m:\u001b[38;5;192mhash_unset\u001b[0;36m:\u001b[0;32m71\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08797130 for BoxSize in \u001b[38;5;227mread_param.c\u001b[0;36m:\u001b[38;5;192mhash_unset\u001b[0;36m:\u001b[0;32m71\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08794360 for corner0 in \u001b[38;5;227mread_param.c\u001b[0;36m:\u001b[38;5;192mhash_unset\u001b[0;36m:\u001b[0;32m71\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08797540 for corner1 in \u001b[38;5;227mread_param.c\u001b[0;36m:\u001b[38;5;192mhash_unset\u001b[0;36m:\u001b[0;32m71\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08796ee0 for corner2 in \u001b[38;5;227mread_param.c\u001b[0;36m:\u001b[38;5;192mhash_unset\u001b[0;36m:\u001b[0;32m71\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0883acd0 for ICsMode in \u001b[38;5;227mread_param.c\u001b[0;36m:\u001b[38;5;192mhash_unset\u001b[0;36m:\u001b[0;32m71\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08796f30 for WriteICsRngState in \u001b[38;5;227mread_param.c\u001b[0;36m:\u001b[38;5;192mhash_unset\u001b[0;36m:\u001b[0;32m71\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0883af50 for OutputICsRngState in \u001b[38;5;227mread_param.c\u001b[0;36m:\u001b[38;5;192mhash_unset\u001b[0;36m:\u001b[0;32m71\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb087a4a90 for WriteWhiteNoise in \u001b[38;5;227mread_param.c\u001b[0;36m:\u001b[38;5;192mhash_unset\u001b[0;36m:\u001b[0;32m71\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08797270 for OutputWhiteNoise in \u001b[38;5;227mread_param.c\u001b[0;36m:\u001b[38;5;192mhash_unset\u001b[0;36m:\u001b[0;32m71\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb087974a0 for InputWhiteNoise in \u001b[38;5;227mread_param.c\u001b[0;36m:\u001b[38;5;192mhash_unset\u001b[0;36m:\u001b[0;32m71\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08792ae0 for InputInitialConditions in \u001b[38;5;227mread_param.c\u001b[0;36m:\u001b[38;5;192mhash_unset\u001b[0;36m:\u001b[0;32m71\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08792b30 for WriteInitialConditions in \u001b[38;5;227mread_param.c\u001b[0;36m:\u001b[38;5;192mhash_unset\u001b[0;36m:\u001b[0;32m71\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb087a4b30 for OutputInitialConditions in \u001b[38;5;227mread_param.c\u001b[0;36m:\u001b[38;5;192mhash_unset\u001b[0;36m:\u001b[0;32m71\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0879faa0 for InputPowerSpectrum in \u001b[38;5;227mread_param.c\u001b[0;36m:\u001b[38;5;192mhash_unset\u001b[0;36m:\u001b[0;32m71\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08798620 for RedshiftLPT in \u001b[38;5;227mread_param.c\u001b[0;36m:\u001b[38;5;192mhash_unset\u001b[0;36m:\u001b[0;32m71\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb087a4950 for WriteLPTSnapshot in \u001b[38;5;227mread_param.c\u001b[0;36m:\u001b[38;5;192mhash_unset\u001b[0;36m:\u001b[0;32m71\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb087a4bd0 for OutputLPTSnapshot in \u001b[38;5;227mread_param.c\u001b[0;36m:\u001b[38;5;192mhash_unset\u001b[0;36m:\u001b[0;32m71\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb087c0770 for WriteLPTDensity in \u001b[38;5;227mread_param.c\u001b[0;36m:\u001b[38;5;192mhash_unset\u001b[0;36m:\u001b[0;32m71\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb087c0710 for OutputLPTDensity in \u001b[38;5;227mread_param.c\u001b[0;36m:\u001b[38;5;192mhash_unset\u001b[0;36m:\u001b[0;32m71\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0883ac80 for WriteLPTDisplacements in \u001b[38;5;227mread_param.c\u001b[0;36m:\u001b[38;5;192mhash_unset\u001b[0;36m:\u001b[0;32m71\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08792950 for OutputPsiLPT1 in \u001b[38;5;227mread_param.c\u001b[0;36m:\u001b[38;5;192mhash_unset\u001b[0;36m:\u001b[0;32m71\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0883ad70 for OutputPsiLPT2 in \u001b[38;5;227mread_param.c\u001b[0;36m:\u001b[38;5;192mhash_unset\u001b[0;36m:\u001b[0;32m71\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb087acc60 for ModulePMCOLA in \u001b[38;5;227mread_param.c\u001b[0;36m:\u001b[38;5;192mhash_unset\u001b[0;36m:\u001b[0;32m71\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0883b130 for InputPMCOLASnapshot in \u001b[38;5;227mread_param.c\u001b[0;36m:\u001b[38;5;192mhash_unset\u001b[0;36m:\u001b[0;32m71\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0883b040 for InputPsiLPT1 in \u001b[38;5;227mread_param.c\u001b[0;36m:\u001b[38;5;192mhash_unset\u001b[0;36m:\u001b[0;32m71\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb087973b0 for InputPsiLPT2 in \u001b[38;5;227mread_param.c\u001b[0;36m:\u001b[38;5;192mhash_unset\u001b[0;36m:\u001b[0;32m71\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb087929a0 for IsNonZeroInitialMomenta in \u001b[38;5;227mread_param.c\u001b[0;36m:\u001b[38;5;192mhash_unset\u001b[0;36m:\u001b[0;32m71\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb087970e0 for InputInitialMomenta in \u001b[38;5;227mread_param.c\u001b[0;36m:\u001b[38;5;192mhash_unset\u001b[0;36m:\u001b[0;32m71\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb087986c0 for EvolutionMode in \u001b[38;5;227mread_param.c\u001b[0;36m:\u001b[38;5;192mhash_unset\u001b[0;36m:\u001b[0;32m71\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08792a90 for ParticleMesh in \u001b[38;5;227mread_param.c\u001b[0;36m:\u001b[38;5;192mhash_unset\u001b[0;36m:\u001b[0;32m71\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08797310 for TimeStepDistribution in \u001b[38;5;227mread_param.c\u001b[0;36m:\u001b[38;5;192mhash_unset\u001b[0;36m:\u001b[0;32m71\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08796f80 for ModifiedDiscretization in \u001b[38;5;227mread_param.c\u001b[0;36m:\u001b[38;5;192mhash_unset\u001b[0;36m:\u001b[0;32m71\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb087bddf0 for n_LPT in \u001b[38;5;227mread_param.c\u001b[0;36m:\u001b[38;5;192mhash_unset\u001b[0;36m:\u001b[0;32m71\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08796e30 for n_Tiles in \u001b[38;5;227mread_param.c\u001b[0;36m:\u001b[38;5;192mhash_unset\u001b[0;36m:\u001b[0;32m71\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08826210 for nPairsForceDiagnostic in \u001b[38;5;227mread_param.c\u001b[0;36m:\u001b[38;5;192mhash_unset\u001b[0;36m:\u001b[0;32m71\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08826190 for nBinsForceDiagnostic in \u001b[38;5;227mread_param.c\u001b[0;36m:\u001b[38;5;192mhash_unset\u001b[0;36m:\u001b[0;32m71\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb087acd00 for maxTrialsForceDiagnostic in \u001b[38;5;227mread_param.c\u001b[0;36m:\u001b[38;5;192mhash_unset\u001b[0;36m:\u001b[0;32m71\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08838fc0 for OutputForceDiagnostic in \u001b[38;5;227mread_param.c\u001b[0;36m:\u001b[38;5;192mhash_unset\u001b[0;36m:\u001b[0;32m71\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0879c7e0 for RunForceDiagnostic in \u001b[38;5;227mread_param.c\u001b[0;36m:\u001b[38;5;192mhash_unset\u001b[0;36m:\u001b[0;32m71\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0879f960 for WriteSnapshots in \u001b[38;5;227mread_param.c\u001b[0;36m:\u001b[38;5;192mhash_unset\u001b[0;36m:\u001b[0;32m71\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb087f2740 for OutputSnapshotsBase in \u001b[38;5;227mread_param.c\u001b[0;36m:\u001b[38;5;192mhash_unset\u001b[0;36m:\u001b[0;32m71\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08794540 for OutputSnapshotsExt in \u001b[38;5;227mread_param.c\u001b[0;36m:\u001b[38;5;192mhash_unset\u001b[0;36m:\u001b[0;32m71\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb087c05f0 for WriteDensities in \u001b[38;5;227mread_param.c\u001b[0;36m:\u001b[38;5;192mhash_unset\u001b[0;36m:\u001b[0;32m71\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb087c0620 for OutputDensitiesBase in \u001b[38;5;227mread_param.c\u001b[0;36m:\u001b[38;5;192mhash_unset\u001b[0;36m:\u001b[0;32m71\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb087c08e0 for OutputDensitiesExt in \u001b[38;5;227mread_param.c\u001b[0;36m:\u001b[38;5;192mhash_unset\u001b[0;36m:\u001b[0;32m71\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb087f2070 for RedshiftFCs in \u001b[38;5;227mread_param.c\u001b[0;36m:\u001b[38;5;192mhash_unset\u001b[0;36m:\u001b[0;32m71\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb087a1fb0 for WriteFinalSnapshot in \u001b[38;5;227mread_param.c\u001b[0;36m:\u001b[38;5;192mhash_unset\u001b[0;36m:\u001b[0;32m71\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb087a1fe0 for OutputFinalSnapshot in \u001b[38;5;227mread_param.c\u001b[0;36m:\u001b[38;5;192mhash_unset\u001b[0;36m:\u001b[0;32m71\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb087c04b0 for WriteFinalDensity in \u001b[38;5;227mread_param.c\u001b[0;36m:\u001b[38;5;192mhash_unset\u001b[0;36m:\u001b[0;32m71\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08794400 for OutputFinalDensity in \u001b[38;5;227mread_param.c\u001b[0;36m:\u001b[38;5;192mhash_unset\u001b[0;36m:\u001b[0;32m71\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08794450 for WriteReferenceFrame in \u001b[38;5;227mread_param.c\u001b[0;36m:\u001b[38;5;192mhash_unset\u001b[0;36m:\u001b[0;32m71\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08797c50 for OutputMomentaBase in \u001b[38;5;227mread_param.c\u001b[0;36m:\u001b[38;5;192mhash_unset\u001b[0;36m:\u001b[0;32m71\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb087bba70 for OutputMomentaExt in \u001b[38;5;227mread_param.c\u001b[0;36m:\u001b[38;5;192mhash_unset\u001b[0;36m:\u001b[0;32m71\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb087bbac0 for ReadReferenceFrame in \u001b[38;5;227mread_param.c\u001b[0;36m:\u001b[38;5;192mhash_unset\u001b[0;36m:\u001b[0;32m71\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb087942c0 for InputMomentaBase in \u001b[38;5;227mread_param.c\u001b[0;36m:\u001b[38;5;192mhash_unset\u001b[0;36m:\u001b[0;32m71\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb087caa20 for InputMomentaExt in \u001b[38;5;227mread_param.c\u001b[0;36m:\u001b[38;5;192mhash_unset\u001b[0;36m:\u001b[0;32m71\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb087caa50 for NumberOfTilesPerDimension in \u001b[38;5;227mread_param.c\u001b[0;36m:\u001b[38;5;192mhash_unset\u001b[0;36m:\u001b[0;32m71\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0825a390 for NumberOfParticlesInBuffer in \u001b[38;5;227mread_param.c\u001b[0;36m:\u001b[38;5;192mhash_unset\u001b[0;36m:\u001b[0;32m71\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0825a3f0 for OutputLPTPotential1 in \u001b[38;5;227mread_param.c\u001b[0;36m:\u001b[38;5;192mhash_unset\u001b[0;36m:\u001b[0;32m71\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08209450 for OutputLPTPotential2 in \u001b[38;5;227mread_param.c\u001b[0;36m:\u001b[38;5;192mhash_unset\u001b[0;36m:\u001b[0;32m71\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08209480 for OutputTilesBase in \u001b[38;5;227mread_param.c\u001b[0;36m:\u001b[38;5;192mhash_unset\u001b[0;36m:\u001b[0;32m71\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb082094d0 for OutputTilesExt in \u001b[38;5;227mread_param.c\u001b[0;36m:\u001b[38;5;192mhash_unset\u001b[0;36m:\u001b[0;32m71\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb088260a0 for ModuleRSD in \u001b[38;5;227mread_param.c\u001b[0;36m:\u001b[38;5;192mhash_unset\u001b[0;36m:\u001b[0;32m71\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb088260f0 for DoNonLinearMapping in \u001b[38;5;227mread_param.c\u001b[0;36m:\u001b[38;5;192mhash_unset\u001b[0;36m:\u001b[0;32m71\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb088350d0 for vobs0 in \u001b[38;5;227mread_param.c\u001b[0;36m:\u001b[38;5;192mhash_unset\u001b[0;36m:\u001b[0;32m71\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08835120 for vobs1 in \u001b[38;5;227mread_param.c\u001b[0;36m:\u001b[38;5;192mhash_unset\u001b[0;36m:\u001b[0;32m71\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08835170 for vobs2 in \u001b[38;5;227mread_param.c\u001b[0;36m:\u001b[38;5;192mhash_unset\u001b[0;36m:\u001b[0;32m71\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb087c0330 for alpha1RSD in \u001b[38;5;227mread_param.c\u001b[0;36m:\u001b[38;5;192mhash_unset\u001b[0;36m:\u001b[0;32m71\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb087c0380 for DoLPTSplit in \u001b[38;5;227mread_param.c\u001b[0;36m:\u001b[38;5;192mhash_unset\u001b[0;36m:\u001b[0;32m71\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb087c03d0 for alpha2RSD in \u001b[38;5;227mread_param.c\u001b[0;36m:\u001b[38;5;192mhash_unset\u001b[0;36m:\u001b[0;32m71\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08796a60 for WriteRSSnapshot in \u001b[38;5;227mread_param.c\u001b[0;36m:\u001b[38;5;192mhash_unset\u001b[0;36m:\u001b[0;32m71\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08796ab0 for OutputRSSnapshot in \u001b[38;5;227mread_param.c\u001b[0;36m:\u001b[38;5;192mhash_unset\u001b[0;36m:\u001b[0;32m71\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08796b00 for WriteRSDensity in \u001b[38;5;227mread_param.c\u001b[0;36m:\u001b[38;5;192mhash_unset\u001b[0;36m:\u001b[0;32m71\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08797de0 for OutputRSDensity in \u001b[38;5;227mread_param.c\u001b[0;36m:\u001b[38;5;192mhash_unset\u001b[0;36m:\u001b[0;32m71\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08797e30 for ModuleMocks in \u001b[38;5;227mread_param.c\u001b[0;36m:\u001b[38;5;192mhash_unset\u001b[0;36m:\u001b[0;32m71\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08797e80 for InputRngStateMocks in \u001b[38;5;227mread_param.c\u001b[0;36m:\u001b[38;5;192mhash_unset\u001b[0;36m:\u001b[0;32m71\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb087977a0 for OutputRngStateMocks in \u001b[38;5;227mread_param.c\u001b[0;36m:\u001b[38;5;192mhash_unset\u001b[0;36m:\u001b[0;32m71\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb087977f0 for WriteMocksRngState in \u001b[38;5;227mread_param.c\u001b[0;36m:\u001b[38;5;192mhash_unset\u001b[0;36m:\u001b[0;32m71\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08797840 for OutputMocksRngState in \u001b[38;5;227mread_param.c\u001b[0;36m:\u001b[38;5;192mhash_unset\u001b[0;36m:\u001b[0;32m71\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0879f080 for NoiseModel in \u001b[38;5;227mread_param.c\u001b[0;36m:\u001b[38;5;192mhash_unset\u001b[0;36m:\u001b[0;32m71\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0879f0b0 for NumberOfNoiseRealizations in \u001b[38;5;227mread_param.c\u001b[0;36m:\u001b[38;5;192mhash_unset\u001b[0;36m:\u001b[0;32m71\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0879f110 for InputDensityMocks in \u001b[38;5;227mread_param.c\u001b[0;36m:\u001b[38;5;192mhash_unset\u001b[0;36m:\u001b[0;32m71\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0879f160 for InputSurveyGeometry in \u001b[38;5;227mread_param.c\u001b[0;36m:\u001b[38;5;192mhash_unset\u001b[0;36m:\u001b[0;32m71\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb087abb80 for InputSummaryStatskGrid in \u001b[38;5;227mread_param.c\u001b[0;36m:\u001b[38;5;192mhash_unset\u001b[0;36m:\u001b[0;32m71\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb087abbd0 for WriteMocks in \u001b[38;5;227mread_param.c\u001b[0;36m:\u001b[38;5;192mhash_unset\u001b[0;36m:\u001b[0;32m71\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb087abc20 for OutputMockBase in \u001b[38;5;227mread_param.c\u001b[0;36m:\u001b[38;5;192mhash_unset\u001b[0;36m:\u001b[0;32m71\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb087993d0 for OutputMockExt in \u001b[38;5;227mread_param.c\u001b[0;36m:\u001b[38;5;192mhash_unset\u001b[0;36m:\u001b[0;32m71\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08799420 for WriteSummaryStats in \u001b[38;5;227mread_param.c\u001b[0;36m:\u001b[38;5;192mhash_unset\u001b[0;36m:\u001b[0;32m71\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08799470 for OutputSummaryStats in \u001b[38;5;227mread_param.c\u001b[0;36m:\u001b[38;5;192mhash_unset\u001b[0;36m:\u001b[0;32m71\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb087994c0 for h in \u001b[38;5;227mread_param.c\u001b[0;36m:\u001b[38;5;192mhash_unset\u001b[0;36m:\u001b[0;32m71\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0879c450 for Omega_r in \u001b[38;5;227mread_param.c\u001b[0;36m:\u001b[38;5;192mhash_unset\u001b[0;36m:\u001b[0;32m71\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0879c4a0 for Omega_q in \u001b[38;5;227mread_param.c\u001b[0;36m:\u001b[38;5;192mhash_unset\u001b[0;36m:\u001b[0;32m71\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0879c4f0 for Omega_b in \u001b[38;5;227mread_param.c\u001b[0;36m:\u001b[38;5;192mhash_unset\u001b[0;36m:\u001b[0;32m71\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0879c540 for Omega_m in \u001b[38;5;227mread_param.c\u001b[0;36m:\u001b[38;5;192mhash_unset\u001b[0;36m:\u001b[0;32m71\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0879c590 for Omega_k in \u001b[38;5;227mread_param.c\u001b[0;36m:\u001b[38;5;192mhash_unset\u001b[0;36m:\u001b[0;32m71\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb087bdbe0 for n_s in \u001b[38;5;227mread_param.c\u001b[0;36m:\u001b[38;5;192mhash_unset\u001b[0;36m:\u001b[0;32m71\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb087bdc30 for sigma8 in \u001b[38;5;227mread_param.c\u001b[0;36m:\u001b[38;5;192mhash_unset\u001b[0;36m:\u001b[0;32m71\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb087bdc80 for w0_fld in \u001b[38;5;227mread_param.c\u001b[0;36m:\u001b[38;5;192mhash_unset\u001b[0;36m:\u001b[0;32m71\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb087bdcd0 for wa_fld in \u001b[38;5;227mread_param.c\u001b[0;36m:\u001b[38;5;192mhash_unset\u001b[0;36m:\u001b[0;32m71\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0883bf60 for hashtab in \u001b[38;5;227mread_param.c\u001b[0;36m:\u001b[38;5;192mread_parameterfile\u001b[0;36m:\u001b[0;32m907\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]|Reading parameter file in '/home/hoellinger/wip3m/results/forcediag1/nsteps20_example_p3m.sbmy' done.\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]|\u001b[38;5;246mCorrectly allocated memory (786432 bytes) at 0x55cb0883bf60 for PsiLPT in \u001b[38;5;227mmain.c\u001b[0;36m:\u001b[38;5;192mmain_sbmy\u001b[0;36m:\u001b[0;32m110\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb087f5810 for FCs_field.data in \u001b[38;5;227mmain.c\u001b[0;36m:\u001b[38;5;192mmain_sbmy\u001b[0;36m:\u001b[0;32m115\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;147mMODULE \u001b[00m]|\u001b[38;5;147mModuleLPT: Initializing snapshot...\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly allocated memory (393216 bytes) at 0x55cb086a11f0 for P.positions in \u001b[38;5;227msnapshot.c\u001b[0;36m:\u001b[38;5;192mreturn_grid_snapshot_DM\u001b[0;36m:\u001b[0;32m169\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly allocated memory (393216 bytes) at 0x55cb08701200 for P.velocities in \u001b[38;5;227msnapshot.c\u001b[0;36m:\u001b[38;5;192mreturn_grid_snapshot_DM\u001b[0;36m:\u001b[0;32m169\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb087d1430 for P.ids in \u001b[38;5;227msnapshot.c\u001b[0;36m:\u001b[38;5;192mreturn_grid_snapshot_DM\u001b[0;36m:\u001b[0;32m169\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;147mMODULE \u001b[00m]|\u001b[38;5;147mModuleLPT: Initializing snapshot done.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;159mTIMER \u001b[00m]|LPT snapshot initialization: 0.172 CPU - 0.006 wallclock seconds used.\n",
"[02:24:41\u001b[00m|\u001b[38;5;147mMODULE \u001b[00m]|\u001b[38;5;147mModuleLPT: Returning initial conditions...\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]==|Reading field in '/data70/hoellinger/WIP3M/forcediag1/initial_density.h5'...\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb08772540 for ICs_field.data in \u001b[38;5;227mlpt.c\u001b[0;36m:\u001b[38;5;192mget_initial_conditions\u001b[0;36m:\u001b[0;32m121\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]==|Reading field in '/data70/hoellinger/WIP3M/forcediag1/initial_density.h5' done.\n",
"[02:24:41\u001b[00m|\u001b[38;5;147mMODULE \u001b[00m]|\u001b[38;5;147mModuleLPT: Returning initial conditions done.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;159mTIMER \u001b[00m]|LPT initial conditions: 0.192 CPU - 0.008 wallclock seconds used.\n",
"[02:24:41\u001b[00m|\u001b[38;5;147mMODULE \u001b[00m]|\u001b[38;5;147mModuleLPT: Evolving with Lagrangian perturbation theory (using 32 cores)...\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb08575200 for phi1 in \u001b[38;5;227mlpt.c\u001b[0;36m:\u001b[38;5;192mevolve_lpt\u001b[0;36m:\u001b[0;32m604\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb08595210 for phi2 in \u001b[38;5;227mlpt.c\u001b[0;36m:\u001b[38;5;192mevolve_lpt\u001b[0;36m:\u001b[0;32m606\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]==|Computing Lagrangian potentials, periodic boundary conditions (using 32 cores)...\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]====|\u001b[38;5;246mCorrectly allocated memory (139264 bytes) at 0x55cb085b5220 for phi1_fs in \u001b[38;5;227mlpt.c\u001b[0;36m:\u001b[38;5;192mget_potentials_periodic\u001b[0;36m:\u001b[0;32m199\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]====|\u001b[38;5;246mCorrectly allocated memory (139264 bytes) at 0x55cb085d7230 for AUX in \u001b[38;5;227mlpt.c\u001b[0;36m:\u001b[38;5;192mget_potentials_periodic\u001b[0;36m:\u001b[0;32m200\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]====|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb085d7230 for AUX in \u001b[38;5;227mlpt.c\u001b[0;36m:\u001b[38;5;192mget_potentials_periodic\u001b[0;36m:\u001b[0;32m223\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]======|\u001b[38;5;246mphi1=[47.2319 42.3787 36.3836 37.672 38.2979 38.5121 41.9472 43.9162 40.5739 30.8487 23.2239 12.8938 0.107064 -8.6725 -21.8996 -26.0947 -26.4535 -26.2548 -26.8737 -25.5193 -23.6712 -20.9114 -17.9755 -7.39222 1.26319 11.1909 16.2126 23.079 31.2159 38.3702 46.8912 48.7634 56.4322 48.2668 40.5232 38.0133 39.9278 39.5403 39.5883 41.2595 37.2127 36.0914 27.0051 15.3204 4.09597 -3.54301 -13.9048 -19.8965 -22.8311 -26.7959 -28.2151 -28.9148 -28.3291 -25.9206 -21.1365 -9.86366 1.27518 13.8106 22.3625 29.5885 41.8275 49.639 55.1122 56.8693 57.7936 51.0163 43.2442 41.8046 43.1511 44.8754 44.6807 41.3538 36.6969 38.8021 32.4499 22.7567 11.4102 2.46955 -8.27795 -14.5797 -17.6189 -20.2041 -23.9175 -24.3429 -24.6511 -23.5456 -18.7415 -9.72544 3.24699 13.1879 24.1942 34.1379 47.8955 56.5114 59.2315 59.8578 53.0035 48.6978 46.9915 49.2617 ...]\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]====|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb085d7230 for PHI00 in \u001b[38;5;227mlpt.c\u001b[0;36m:\u001b[38;5;192mget_potentials_periodic\u001b[0;36m:\u001b[0;32m233\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]====|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb085f7240 for PHI11 in \u001b[38;5;227mlpt.c\u001b[0;36m:\u001b[38;5;192mget_potentials_periodic\u001b[0;36m:\u001b[0;32m234\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]====|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb08617250 for PHI22 in \u001b[38;5;227mlpt.c\u001b[0;36m:\u001b[38;5;192mget_potentials_periodic\u001b[0;36m:\u001b[0;32m235\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]====|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb08637260 for PHI01 in \u001b[38;5;227mlpt.c\u001b[0;36m:\u001b[38;5;192mget_potentials_periodic\u001b[0;36m:\u001b[0;32m236\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]====|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb08abb170 for PHI02 in \u001b[38;5;227mlpt.c\u001b[0;36m:\u001b[38;5;192mget_potentials_periodic\u001b[0;36m:\u001b[0;32m237\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]====|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb08adb180 for PHI12 in \u001b[38;5;227mlpt.c\u001b[0;36m:\u001b[38;5;192mget_potentials_periodic\u001b[0;36m:\u001b[0;32m238\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]====|\u001b[38;5;246mCorrectly allocated memory (139264 bytes) at 0x55cb08afb190 for AUX in \u001b[38;5;227mpoisson_solvers.c\u001b[0;36m:\u001b[38;5;192mget_2ndderivative_potential_rs_DFT\u001b[0;36m:\u001b[0;32m169\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]====|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08afb190 for AUX in \u001b[38;5;227mpoisson_solvers.c\u001b[0;36m:\u001b[38;5;192mget_2ndderivative_potential_rs_DFT\u001b[0;36m:\u001b[0;32m187\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]====|\u001b[38;5;246mCorrectly allocated memory (139264 bytes) at 0x55cb08afb190 for AUX in \u001b[38;5;227mpoisson_solvers.c\u001b[0;36m:\u001b[38;5;192mget_2ndderivative_potential_rs_DFT\u001b[0;36m:\u001b[0;32m169\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]====|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08afb190 for AUX in \u001b[38;5;227mpoisson_solvers.c\u001b[0;36m:\u001b[38;5;192mget_2ndderivative_potential_rs_DFT\u001b[0;36m:\u001b[0;32m187\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]====|\u001b[38;5;246mCorrectly allocated memory (139264 bytes) at 0x55cb08afb190 for AUX in \u001b[38;5;227mpoisson_solvers.c\u001b[0;36m:\u001b[38;5;192mget_2ndderivative_potential_rs_DFT\u001b[0;36m:\u001b[0;32m169\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]====|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08afb190 for AUX in \u001b[38;5;227mpoisson_solvers.c\u001b[0;36m:\u001b[38;5;192mget_2ndderivative_potential_rs_DFT\u001b[0;36m:\u001b[0;32m187\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]====|\u001b[38;5;246mCorrectly allocated memory (139264 bytes) at 0x55cb08afb190 for AUX in \u001b[38;5;227mpoisson_solvers.c\u001b[0;36m:\u001b[38;5;192mget_2ndderivative_potential_rs_DFT\u001b[0;36m:\u001b[0;32m169\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]====|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08afb190 for AUX in \u001b[38;5;227mpoisson_solvers.c\u001b[0;36m:\u001b[38;5;192mget_2ndderivative_potential_rs_DFT\u001b[0;36m:\u001b[0;32m187\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]====|\u001b[38;5;246mCorrectly allocated memory (139264 bytes) at 0x55cb08afb190 for AUX in \u001b[38;5;227mpoisson_solvers.c\u001b[0;36m:\u001b[38;5;192mget_2ndderivative_potential_rs_DFT\u001b[0;36m:\u001b[0;32m169\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]====|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08afb190 for AUX in \u001b[38;5;227mpoisson_solvers.c\u001b[0;36m:\u001b[38;5;192mget_2ndderivative_potential_rs_DFT\u001b[0;36m:\u001b[0;32m187\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]====|\u001b[38;5;246mCorrectly allocated memory (139264 bytes) at 0x55cb08afb190 for AUX in \u001b[38;5;227mpoisson_solvers.c\u001b[0;36m:\u001b[38;5;192mget_2ndderivative_potential_rs_DFT\u001b[0;36m:\u001b[0;32m169\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]====|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08afb190 for AUX in \u001b[38;5;227mpoisson_solvers.c\u001b[0;36m:\u001b[38;5;192mget_2ndderivative_potential_rs_DFT\u001b[0;36m:\u001b[0;32m187\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]====|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb085b5220 for phi1_fs in \u001b[38;5;227mlpt.c\u001b[0;36m:\u001b[38;5;192mget_potentials_periodic\u001b[0;36m:\u001b[0;32m288\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]======|\u001b[38;5;246mPHI00=[-0.784269 -0.29015 0.567948 0.425166 0.667769 0.734648 0.0534074 -0.169362 0.161651 0.642128 0.885179 0.53844 0.483512 0.248178 0.823048 0.681005 0.868152 0.913395 0.823481 0.616244 0.48264 0.337299 0.498298 0.0707091 0.0463234 -0.110028 0.0712752 -0.140816 -0.721263 -1.05918 -1.39015 -1.14429 -0.751543 -0.0901751 0.553619 0.700669 0.645672 0.65837 0.199223 0.217587 0.762528 0.458159 0.998539 1.04355 0.874396 0.151068 0.149625 0.131951 0.508045 1.25806 1.13241 1.07781 0.833887 0.699478 0.426476 -0.0381416 0.0288815 -0.302053 -0.288625 -0.137748 -0.71982 -1.17861 -1.03943 -0.808395 -0.423617 0.0309392 0.594642 0.664679 0.223485 0.00752389 0.00234774 0.336849 0.899745 0.667219 1.16037 1.07108 0.887593 -0.0355211 -0.12671 0.0415321 0.352329 0.910195 1.17971 0.814864 0.544931 0.431617 0.365001 0.286053 0.131754 0.333694 0.485301 0.266144 -0.31801 -0.831861 -0.704757 -0.458555 -0.0968574 0.228758 0.37909 0.121016 ...]\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]======|\u001b[38;5;246mPHI11=[-1.33963 -0.991921 -0.551232 -0.54796 -0.287175 0.0569453 0.0605424 -0.206748 -0.270574 0.319115 0.127777 0.305461 0.446325 0.365932 0.721861 0.575778 0.632993 0.411273 0.403021 0.624863 0.710258 0.714543 0.407548 -0.0228347 0.123268 -0.396033 -0.295966 -0.379989 -0.409061 -0.276913 -0.99711 -1.22535 -1.70161 -1.01369 -0.359579 0.242752 0.310821 0.565025 0.813905 0.414875 0.285013 -0.211964 0.073071 0.242155 0.311815 -0.00973761 -0.0857236 0.0919562 0.340532 0.802365 0.9279 1.2744 1.3037 1.43673 0.963967 0.684595 0.582862 0.0870358 -0.179192 -0.285564 -0.841147 -1.04394 -1.21913 -1.36149 -1.24058 -1 -0.0469093 0.291121 0.0307971 -0.2598 -0.0738761 0.0734288 0.265944 -0.901634 -0.750186 -0.496936 -0.0644205 -0.167807 -0.610556 -0.606331 -0.160626 -0.0976117 0.11838 0.447318 0.703836 0.975916 0.849195 1.27659 1.04824 0.989731 0.383562 -0.0320472 -0.815267 -1.20498 -1.04799 -1.14387 -0.506839 -0.620764 -0.593896 -0.747759 ...]\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]======|\u001b[38;5;246mPHI22=[-0.699312 0.104874 0.797659 0.34668 0.108443 0.285242 -0.313914 -1.15447 -0.998549 -0.305467 -0.360422 -0.22571 0.0693843 0.259003 1.0908 1.07889 0.258357 0.0559774 0.22642 0.242016 0.155819 0.556963 0.846444 0.316491 -0.268082 -0.418437 0.00336723 0.212701 0.0419977 -0.306134 -0.958409 -1.04862 -1.07681 -0.103188 0.957096 0.736285 0.0159944 0.0120061 -0.127255 -0.430454 -0.489499 -0.975176 -0.793849 0.119218 0.306773 0.156872 0.567156 0.590878 0.221392 0.298786 0.329372 0.319568 0.456668 0.816415 0.95119 0.476089 -0.0827715 -0.493529 -0.101397 0.267043 -0.386268 -0.801266 -0.747797 -0.989548 -0.819462 -0.0231379 0.903517 0.76765 0.101417 -0.41202 -0.594585 0.0606212 0.233547 -0.843359 -1.04954 -0.265111 0.0844717 0.202367 0.646701 0.714061 0.190144 0.0928406 0.347814 0.308515 0.415202 0.813922 1.00493 0.568324 -0.0650744 -0.122704 0.172122 0.0889674 -0.772821 -1.1892 -0.798378 -0.761739 -0.0353257 0.486177 0.50021 -0.0239269 ...]\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]======|\u001b[38;5;246mPHI01=[-0.47899 -0.275337 0.344071 0.540172 0.305868 -0.0884352 -0.348127 -0.760403 -0.970949 -0.881878 -0.698715 -0.52696 -0.292202 -0.334623 0.160768 0.123227 -0.0317472 -0.499707 -0.653537 -0.365983 -0.508112 -0.808545 -0.664151 -0.748805 -0.871238 -0.654296 -0.995492 -1.29829 -0.923516 -0.470407 -0.456115 -0.221848 -0.38107 -0.425155 -0.280948 0.156917 0.262797 0.154001 -0.174799 -0.51216 -0.628448 -0.282768 -0.423579 -0.649479 -0.409469 -0.329331 -0.476005 0.210689 -0.176506 -0.888466 -1.13844 -0.701318 -0.416382 -0.365081 -0.456865 -0.566498 -0.989642 -0.948128 -1.03643 -1.15297 -0.861137 -0.15139 -0.0604313 -0.358716 -0.157809 -0.00265639 0.16237 0.603189 0.490705 -0.0660029 -0.144696 -0.319273 -0.588667 -0.354157 -0.0516477 -0.294916 -0.57316 -0.41364 -0.769557 -0.248029 -0.187638 -0.279643 -0.71604 -0.762351 -0.61394 -0.438123 -0.470653 -0.72974 -0.562355 -0.961297 -0.804459 -0.401036 -0.541832 -0.247489 -0.440441 -0.286678 0.36482 0.711236 0.804505 0.657639 ...]\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]======|\u001b[38;5;246mPHI02=[-0.714171 -0.954039 -0.789022 -0.310415 0.468433 0.469865 -0.152044 -0.476037 -0.152973 0.501889 0.384581 -0.429034 -0.697627 -0.190423 -0.1603 -0.352953 0.187856 0.360507 -0.149547 -0.488566 -0.146924 0.338911 0.782362 0.903405 0.246365 -0.0418358 0.174571 0.19951 0.176551 0.437137 0.54189 0.0320788 -0.666948 -0.624211 -0.574723 -0.268733 0.448439 0.438498 -0.49923 -0.744885 -0.141333 0.251378 0.332573 -0.189451 -0.57827 0.00363836 0.211721 -0.174289 -0.447886 -0.123838 0.259565 -0.108334 -0.302083 0.177267 0.710738 0.638082 0.356625 0.0286319 -0.280322 0.150245 0.653689 0.72512 0.517442 -0.179118 -0.78061 -0.853916 -0.206949 0.233329 0.465516 0.0322694 -0.818205 -0.929686 0.0764187 0.706758 0.0178704 -0.414925 -0.37748 -0.256959 0.379719 -0.0534546 -0.911298 -0.601422 0.037601 0.233487 0.189314 0.298429 0.580945 0.370627 -0.135265 -0.0886211 -0.0302691 0.374801 1.17813 1.23784 0.334563 -0.28856 -0.382926 -0.304032 0.0311225 0.0596017 ...]\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]======|\u001b[38;5;246mPHI12=[-0.261074 -0.723468 -0.580355 -0.508727 -0.406396 -0.448365 -0.333382 -0.0203574 0.656873 0.691173 0.023265 0.0511115 0.331576 0.0762668 -0.283125 -0.318637 -0.577458 -0.55819 -0.380347 -0.372867 -0.181456 0.273605 0.452558 0.323736 0.655595 0.856672 0.494262 0.713381 0.650832 -0.0948898 -0.261369 0.0595556 -0.153547 -0.231318 -0.281559 -0.125459 0.139411 -0.132486 -0.557851 -0.413157 0.657238 0.818939 0.119346 0.129821 0.0799448 0.144908 0.0233095 -0.299188 -0.341515 -0.367401 -0.304651 -0.246008 -0.238153 0.0133753 0.0188055 0.171857 0.270638 0.374865 0.566372 0.54362 0.442638 -0.271199 -0.440424 -0.111168 0.0867245 0.61856 0.676089 0.161674 -0.0841224 0.0547199 -0.483532 -0.54925 0.0300337 0.479231 0.477384 0.289856 0.0796836 -0.321272 -0.181431 0.107619 0.132951 0.0291782 0.0916901 0.0029343 -0.0191281 -0.066129 -0.299576 -0.0573696 0.058036 0.0946184 0.121661 0.0514253 -0.107541 -0.472873 -0.578923 -0.422921 -0.00967912 0.962352 1.00956 -0.0477528 ...]\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]======|\u001b[38;5;246mphi2=[1.72827 -1.35606 -1.37749 -0.92249 -0.628635 -0.161994 -0.28799 -0.336017 -1.3326 -1.59604 -0.888633 -0.490375 -0.40169 0.0958226 2.14761 1.50674 0.56761 -0.241441 0.0154466 0.173767 0.215984 -0.0166132 -0.288167 -1.46812 -1.28931 -0.908411 -1.28762 -2.29155 -1.06006 0.280947 3.10411 3.8332 3.30679 -0.418589 -0.501869 0.752136 -0.0736083 0.153135 -0.55776 -1.16983 -1.14232 -1.15101 -1.082 -0.0685876 0.128096 -0.108771 -0.248535 -0.0198442 0.0124848 0.685359 0.273156 1.56115 1.74196 2.58411 1.01946 -0.475946 -1.21362 -0.960462 -1.37438 -1.72114 -0.156369 2.38899 2.49078 3.07471 1.2475 -1.12031 -0.0592973 0.482805 -0.431902 0.0935961 -0.881842 -1.21832 0.158254 -1.25849 -1.53188 -1.02762 -0.464997 -0.375528 -1.16875 -0.504441 -0.903491 -0.454165 0.0686159 0.118202 0.488907 1.28146 0.881376 0.580084 -0.276586 -0.773021 -0.327178 -0.291652 -0.558051 1.60747 1.49686 1.40085 -0.209403 -1.857 -2 -0.513817 ...]\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]====|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb085d7230 for PHI00 in \u001b[38;5;227mlpt.c\u001b[0;36m:\u001b[38;5;192mget_potentials_periodic\u001b[0;36m:\u001b[0;32m302\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]====|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb085f7240 for PHI11 in \u001b[38;5;227mlpt.c\u001b[0;36m:\u001b[38;5;192mget_potentials_periodic\u001b[0;36m:\u001b[0;32m303\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]====|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08617250 for PHI22 in \u001b[38;5;227mlpt.c\u001b[0;36m:\u001b[38;5;192mget_potentials_periodic\u001b[0;36m:\u001b[0;32m304\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]====|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08637260 for PHI01 in \u001b[38;5;227mlpt.c\u001b[0;36m:\u001b[38;5;192mget_potentials_periodic\u001b[0;36m:\u001b[0;32m305\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]====|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08abb170 for PHI02 in \u001b[38;5;227mlpt.c\u001b[0;36m:\u001b[38;5;192mget_potentials_periodic\u001b[0;36m:\u001b[0;32m306\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]====|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08adb180 for PHI12 in \u001b[38;5;227mlpt.c\u001b[0;36m:\u001b[38;5;192mget_potentials_periodic\u001b[0;36m:\u001b[0;32m307\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]====|\u001b[38;5;246mCorrectly allocated memory (139264 bytes) at 0x55cb085b5220 for AUX in \u001b[38;5;227mpoisson_solvers.c\u001b[0;36m:\u001b[38;5;192msolve_poisson_DFT\u001b[0;36m:\u001b[0;32m106\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]====|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb085b5220 for AUX in \u001b[38;5;227mpoisson_solvers.c\u001b[0;36m:\u001b[38;5;192msolve_poisson_DFT\u001b[0;36m:\u001b[0;32m116\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]======|\u001b[38;5;246mphi2=[-7.19243 0.711433 2.50844 1.69895 1.92396 1.6682 0.784271 0.281268 1.94507 3.55332 3.40833 3.03304 2.65963 1.32323 -1.00243 -0.0334973 2.66263 4.45627 4.45348 4.21385 3.71045 3.81197 5.12959 7.70255 8.45673 8.42981 7.75244 5.59556 0.280392 -5.65557 -11.5773 -12.959 -9.89881 -1.35776 1.11734 0.845204 2.14053 2.64331 3.47923 4.27156 4.58508 5.40694 5.18881 4.39324 4.15083 3.77005 3.01167 2.80652 4.09826 3.8848 2.85791 0.578 -1.14119 -2.31897 -0.0614372 3.72552 6.73959 7.5081 6.68027 3.58213 -2.49277 -9.37053 -13.4469 -14.48 -7.47699 -0.558793 1.33027 1.88828 3.45775 3.73167 4.93722 6.00481 4.99978 6.18209 5.99903 6.3281 6.40934 6.23168 6.49441 5.85855 6.35357 5.33819 3.13015 0.986308 -1.45782 -3.38515 -2.17893 0.711807 3.98067 5.27667 3.76267 0.340354 -4.39222 -9.8257 -11.8912 -11.672 -3.83313 1.35645 3.69302 3.7771 ...]\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]==|Computing Lagrangian potentials, periodic boundary conditions (using 32 cores) done.\n",
"[02:24:41\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]==|Computing Lagrangian displacement field (using 32 cores)...\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]====|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb085b5220 for Psi1_pad in \u001b[38;5;227mlpt.c\u001b[0;36m:\u001b[38;5;192mcompute_LPT_displacements\u001b[0;36m:\u001b[0;32m512\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]====|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb085d5230 for Psi2_pad in \u001b[38;5;227mlpt.c\u001b[0;36m:\u001b[38;5;192mcompute_LPT_displacements\u001b[0;36m:\u001b[0;32m514\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]======|\u001b[38;5;246mPsi1_0=[7.17583 4.96459 3.35968 1.80851 2.11802 3.68224 3.99748 3.07406 2.09333 2.46217 4.10089 4.00049 2.38475 1.20998 1.62306 0.568782 0.211242 1.32021 1.65327 0.722018 -0.300995 0.134326 1.05465 3.26377 4.66827 4.24923 4.50093 4.94752 5.29897 5.65372 7.04751 7.82128 5.63338 4.26219 3.13654 1.9633 2.06161 3.75706 3.8156 1.76014 0.836061 1.19481 1.84157 2.5251 1.08377 0.212019 1.09832 1.0589 0.40116 -0.732638 -0.0941916 0.30562 -0.52753 -0.902712 0.181539 1.94024 2.73387 3.36674 2.8484 2.24545 3.44938 4.86021 6.34986 6.92998 5.65155 3.26397 2.23588 2.43618 3.1692 4.29824 3.29828 1.02542 -0.420464 1.3311 2.40657 1.40258 0.746872 -0.10734 -0.280964 1.41154 -0.494783 -2.23366 -2.90047 -2.08325 -1.96652 -1.326 -0.772808 0.997782 0.709702 0.45672 0.355217 0.335645 1.85442 5.04816 6.80579 6.38641 5.00215 4.25156 3.78602 4.37605 ...]\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]======|\u001b[38;5;246mPsi2_0=[-3.13183 -2.98806 -2.22211 -1.75676 -1.27025 -1.20952 -1.27562 -1.72865 -1.80505 -1.33031 -1.03401 -0.489251 -0.477254 -0.56089 -0.126299 -0.298697 -0.0856172 0.449229 0.581163 -0.358395 -1.26285 -1.6738 -1.28106 -0.672622 -0.928629 -1.06536 -0.877262 -0.466991 0.119142 -0.472103 -1.80751 -3.16017 -3.33508 -2.88215 -2.32954 -2.05188 -1.42823 -0.842016 -0.596849 -1.44055 -1.5337 -0.880083 -0.853235 -0.535422 -0.289002 -0.0444291 0.660143 0.683142 0.133926 -0.18701 -0.142778 -0.192245 -1.01212 -1.66042 -1.15919 -0.413013 -0.631024 -0.998227 -0.831713 -0.437676 -0.168854 -1.31104 -2.63695 -3.88446 -3.01074 -2.37205 -2.35002 -1.9508 -1.13861 -0.847349 -0.801503 -0.976978 -0.896723 -0.734903 -1.50721 -0.715184 0.253651 0.397625 0.439514 0.820333 0.0939471 -0.449729 -0.62302 -0.706148 -1.03158 -1.1885 -0.843086 -0.106953 -0.388954 -0.774329 -0.538962 -0.18687 0.0974321 -1.84371 -3.22365 -3.69871 -2.33727 -1.93641 -2.01598 -1.88261 ...]\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]====|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb085b5220 for Psi1_pad in \u001b[38;5;227mlpt.c\u001b[0;36m:\u001b[38;5;192mcompute_LPT_displacements\u001b[0;36m:\u001b[0;32m565\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]====|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb085d5230 for Psi2_pad in \u001b[38;5;227mlpt.c\u001b[0;36m:\u001b[38;5;192mcompute_LPT_displacements\u001b[0;36m:\u001b[0;32m567\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]====|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb085b5220 for Psi1_pad in \u001b[38;5;227mlpt.c\u001b[0;36m:\u001b[38;5;192mcompute_LPT_displacements\u001b[0;36m:\u001b[0;32m512\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]====|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb085d5230 for Psi2_pad in \u001b[38;5;227mlpt.c\u001b[0;36m:\u001b[38;5;192mcompute_LPT_displacements\u001b[0;36m:\u001b[0;32m514\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]======|\u001b[38;5;246mPsi1_1=[5.94927 4.16253 3.0554 1.84111 1.02049 0.215528 -0.772967 -1.118 -0.854399 1.50949 1.91029 1.60255 2.11474 2.92886 2.41981 1.79636 1.14526 -0.513472 -1.0875 -2.03486 -2.57897 -2.76068 -1.48455 -0.950449 -0.189603 1.67193 3.23708 3.64898 6.09061 6.25231 5.71105 5.20683 2.64042 2.1594 1.71515 1.03317 1.21331 1.59081 0.68337 -0.640597 -0.969258 1.98835 2.3065 2.46573 2.82578 2.78551 3.40541 2.87875 2.20866 1.51269 0.739052 0.294085 -0.244978 -0.658526 -0.191478 -0.583305 0.49595 0.49925 1.99541 2.76474 4.16989 4.53529 3.08509 2.77359 -0.857157 0.107762 1.61708 2.81212 2.26378 2.47563 2.48265 0.541504 0.285653 0.661639 2.20258 2.57118 3.362 2.88991 2.07691 2.16419 2.50739 2.69599 2.6241 3.06275 2.63584 2.98624 2.37132 1.78793 2.14184 2.02007 2.52032 2.50672 2.72602 2.07656 0.834525 -0.239136 -2.3219 -1.8406 1.52751 2.19765 ...]\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]======|\u001b[38;5;246mPsi2_1=[-1.62359 -1.00602 -0.418313 0.144603 0.236817 0.562081 1.99035 3.24628 2.51063 1.59997 1.20528 0.727313 0.65581 0.986954 0.984299 0.591405 0.259888 -0.463477 -1.01116 -1.77406 -2.17928 -2.6014 -2.25895 -1.4749 -0.36377 -0.102846 0.0885363 -0.093285 -0.81882 -1.82548 -1.93929 -1.72384 -0.0711403 -0.317556 -0.294542 0.0473329 0.383448 0.515867 1.03824 1.43088 0.763678 0.657193 0.647673 0.823765 0.937426 1.22711 1.87421 1.47301 0.922734 0.22048 -0.330833 -0.806887 -1.29207 -1.79928 -1.82713 -1.74768 -1.11902 -0.788286 -0.997443 -1.3138 -1.16815 -1.04253 -0.0784729 0.321726 1.51642 0.678553 0.643921 0.732973 0.598034 0.423424 0.246891 0.722541 0.513195 0.555574 0.428877 0.889885 0.840357 0.782335 1.31904 1.36973 0.833982 0.595701 0.268146 0.384413 0.241237 0.177466 -0.254867 -0.678472 -0.987686 -0.949183 -0.999471 -0.835961 -0.512131 0.222434 1.2247 1.79331 1.29619 0.269115 0.358978 0.370496 ...]\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]====|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb085b5220 for Psi1_pad in \u001b[38;5;227mlpt.c\u001b[0;36m:\u001b[38;5;192mcompute_LPT_displacements\u001b[0;36m:\u001b[0;32m565\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]====|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb085d5230 for Psi2_pad in \u001b[38;5;227mlpt.c\u001b[0;36m:\u001b[38;5;192mcompute_LPT_displacements\u001b[0;36m:\u001b[0;32m567\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]====|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb085b5220 for Psi1_pad in \u001b[38;5;227mlpt.c\u001b[0;36m:\u001b[38;5;192mcompute_LPT_displacements\u001b[0;36m:\u001b[0;32m512\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]====|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb085d5230 for Psi2_pad in \u001b[38;5;227mlpt.c\u001b[0;36m:\u001b[38;5;192mcompute_LPT_displacements\u001b[0;36m:\u001b[0;32m514\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]======|\u001b[38;5;246mPsi1_2=[-1.59618 -2.71207 -1.17668 0.478564 0.21004 0.912336 1.35101 -0.343319 -3.26686 -4.33751 -4.48873 -5.7792 -5.39157 -5.50166 -4.35556 -1.13848 -0.0400214 -0.105049 0.18389 0.80063 1.15195 1.42391 3.37981 4.80968 4.64577 3.73736 2.97202 3.75083 3.82282 3.91882 2.59829 0.0851774 -2.15063 -3.97724 -2.56337 -0.148855 0.381763 -0.0848751 0.429788 -0.593897 -1.29203 -2.55189 -5.19273 -5.72729 -4.71586 -4.50019 -4.08837 -2.23157 -1.72486 -1.346 -0.529714 -0.028513 0.748561 1.79816 4.01422 5.60292 5.91858 5.27183 3.94446 4.86625 5.01263 3.32118 1.80757 0.329986 -2.21037 -3.63734 -2.30292 -0.0232725 0.76768 0.382393 -0.880397 -1.99595 -0.637912 -1.06176 -4.01135 -5.25992 -5.07179 -4.92203 -4.26232 -2.33523 -1.40608 -1.57465 -1.03472 -0.183401 0.199344 1.47741 3.45503 5.49711 5.72833 5.23681 5.23751 5.9253 5.59338 2.83402 0.836591 -0.359492 -1.80373 -1.503 0.140982 0.497841 ...]\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]======|\u001b[38;5;246mPsi2_2=[3.4176 2.42522 0.24688 -0.146121 -0.00768793 -0.284921 -0.346733 0.290199 0.818014 0.365817 -0.130071 -0.187175 -0.427452 -0.915515 -0.339182 0.916265 1.12244 0.447713 -0.0606048 -0.185758 -0.100472 0.354784 0.972645 0.831785 0.181816 -0.176073 -0.708562 -1.86801 -2.81278 -2.96442 -1.82585 1.09621 3.28055 2.75404 0.550741 0.255798 0.449528 0.334677 0.407062 0.27646 0.283844 0.150933 -0.253426 -0.259496 -0.155796 -0.284788 -0.240884 0.271645 0.269571 -0.310085 -0.826701 -0.999777 -0.724242 0.269939 1.51112 1.70026 0.945644 -0.0148308 -0.981493 -2.29326 -3.23816 -2.73853 -1.27736 0.887022 2.77831 2.20182 0.611769 0.531869 0.460847 0.369868 0.568285 0.0156394 0.0443213 0.249813 0.0365016 0.102577 -0.0241039 0.0212677 -0.0932828 -0.0352095 -0.13009 -0.805855 -1.08797 -1.14699 -1.09286 -0.180277 1.02424 1.5399 1.14121 -0.0544996 -1.23408 -2.03872 -2.54151 -1.87474 -0.461587 1.10355 2.1658 1.88154 0.605162 0.209911 ...]\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]====|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb085b5220 for Psi1_pad in \u001b[38;5;227mlpt.c\u001b[0;36m:\u001b[38;5;192mcompute_LPT_displacements\u001b[0;36m:\u001b[0;32m565\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]====|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb085d5230 for Psi2_pad in \u001b[38;5;227mlpt.c\u001b[0;36m:\u001b[38;5;192mcompute_LPT_displacements\u001b[0;36m:\u001b[0;32m567\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]==|Computing Lagrangian displacement field (using 32 cores) done.\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08575200 for phi1 in \u001b[38;5;227mlpt.c\u001b[0;36m:\u001b[38;5;192mevolve_lpt\u001b[0;36m:\u001b[0;32m627\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08595210 for phi2 in \u001b[38;5;227mlpt.c\u001b[0;36m:\u001b[38;5;192mevolve_lpt\u001b[0;36m:\u001b[0;32m629\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]====|\u001b[38;5;246mD1=0.063646\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]====|\u001b[38;5;246mD2=-0.001750\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]====|\u001b[38;5;246mVel1=-317.512672\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]====|\u001b[38;5;246mVel2=-17.463580\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb08575200 for KICK_X in \u001b[38;5;227mlpt.c\u001b[0;36m:\u001b[38;5;192mevolve_lpt\u001b[0;36m:\u001b[0;32m646\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb08595210 for KICK_Y in \u001b[38;5;227mlpt.c\u001b[0;36m:\u001b[38;5;192mevolve_lpt\u001b[0;36m:\u001b[0;32m647\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb085b5220 for KICK_Z in \u001b[38;5;227mlpt.c\u001b[0;36m:\u001b[38;5;192mevolve_lpt\u001b[0;36m:\u001b[0;32m648\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]==|Changing velocities of particles...\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]====|\u001b[38;5;246mmaxkick=982.646441\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]==|Changing velocities of particles done.\n",
"[02:24:41\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]==|Displacing particles...\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]====|\u001b[38;5;246mmaxdrift=0.878076\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]==|Displacing particles done.\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08575200 for KICK_X in \u001b[38;5;227mlpt.c\u001b[0;36m:\u001b[38;5;192mevolve_lpt\u001b[0;36m:\u001b[0;32m697\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08595210 for KICK_Y in \u001b[38;5;227mlpt.c\u001b[0;36m:\u001b[38;5;192mevolve_lpt\u001b[0;36m:\u001b[0;32m698\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb085b5220 for KICK_Z in \u001b[38;5;227mlpt.c\u001b[0;36m:\u001b[38;5;192mevolve_lpt\u001b[0;36m:\u001b[0;32m699\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;147mMODULE \u001b[00m]|\u001b[38;5;147mModuleLPT: Evolving with Lagrangian perturbation theory (using 32 cores) done.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;159mTIMER \u001b[00m]|LPT evolution: 8.223 CPU - 0.286 wallclock seconds used.\n",
"[02:24:41\u001b[00m|\u001b[38;5;159mTIMER \u001b[00m]|ModuleLPT: 8.587 CPU - 0.299 wallclock seconds used.\n",
"[02:24:41\u001b[00m|\u001b[38;5;147mMODULE \u001b[00m]|\u001b[38;5;147mModuleP3M: Evolving with P3M...\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]====|\u001b[38;5;246mNpm0=64\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]====|\u001b[38;5;246mNpm1=64\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]====|\u001b[38;5;246mNpm2=64\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]==|Read timestepping configuration in '/home/hoellinger/wip3m/results/forcediag1/nsteps20_ts_p3m.h5'...\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly allocated memory (20 bytes) at 0x55cb087976d0 for forces in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mevolve_p3m\u001b[0;36m:\u001b[0;32m549\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly allocated memory (20 bytes) at 0x55cb088260f0 for snapshots in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mevolve_p3m\u001b[0;36m:\u001b[0;32m549\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly allocated memory (160 bytes) at 0x55cb081fa1f0 for aKickBeg in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mevolve_p3m\u001b[0;36m:\u001b[0;32m549\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly allocated memory (160 bytes) at 0x55cb081fc9a0 for aKickEnd in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mevolve_p3m\u001b[0;36m:\u001b[0;32m549\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly allocated memory (160 bytes) at 0x55cb081fcad0 for aDriftBeg in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mevolve_p3m\u001b[0;36m:\u001b[0;32m549\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly allocated memory (160 bytes) at 0x55cb081fe4e0 for aDriftEnd in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mevolve_p3m\u001b[0;36m:\u001b[0;32m549\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly allocated memory (168 bytes) at 0x55cb08200cd0 for aiKick in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mevolve_p3m\u001b[0;36m:\u001b[0;32m549\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly allocated memory (168 bytes) at 0x55cb087bb520 for afKick in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mevolve_p3m\u001b[0;36m:\u001b[0;32m549\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly allocated memory (168 bytes) at 0x55cb0882d540 for aDrift in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mevolve_p3m\u001b[0;36m:\u001b[0;32m549\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly allocated memory (160 bytes) at 0x55cb087c05a0 for aiDrift in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mevolve_p3m\u001b[0;36m:\u001b[0;32m549\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly allocated memory (160 bytes) at 0x55cb08824810 for afDrift in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mevolve_p3m\u001b[0;36m:\u001b[0;32m549\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly allocated memory (160 bytes) at 0x55cb087c03d0 for aKick in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mevolve_p3m\u001b[0;36m:\u001b[0;32m549\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]==|\u001b[38;5;246mnsteps=20\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]==|\u001b[38;5;246mforces=[true true true true true true true true true true true true true true true true true true true true]\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]==|\u001b[38;5;246msnapshots=[false false false false false false false false false false false false false false false false false false false false]\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]==|\u001b[38;5;246maKickBeg=[0.05 0.07375 0.12125 0.16875 0.21625 0.26375 0.31125 0.35875 0.40625 0.45375 0.50125 0.54875 0.59625 0.64375 0.69125 0.73875 0.78625 0.83375 0.88125 0.92875]\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]==|\u001b[38;5;246maKickEnd=[0.07375 0.12125 0.16875 0.21625 0.26375 0.31125 0.35875 0.40625 0.45375 0.50125 0.54875 0.59625 0.64375 0.69125 0.73875 0.78625 0.83375 0.88125 0.92875 1]\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]==|\u001b[38;5;246maDriftBeg=[0.05 0.0975 0.145 0.1925 0.24 0.2875 0.335 0.3825 0.43 0.4775 0.525 0.5725 0.62 0.6675 0.715 0.7625 0.81 0.8575 0.905 0.9525]\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]==|\u001b[38;5;246maDriftEnd=[0.0975 0.145 0.1925 0.24 0.2875 0.335 0.3825 0.43 0.4775 0.525 0.5725 0.62 0.6675 0.715 0.7625 0.81 0.8575 0.905 0.9525 1]\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]==|\u001b[38;5;246mnkicks=21\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]==|\u001b[38;5;246maiKick=[0.05 0.07375 0.12125 0.16875 0.21625 0.26375 0.31125 0.35875 0.40625 0.45375 0.50125 0.54875 0.59625 0.64375 0.69125 0.73875 0.78625 0.83375 0.88125 0.92875 0.97625]\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]==|\u001b[38;5;246mafKick=[0.07375 0.12125 0.16875 0.21625 0.26375 0.31125 0.35875 0.40625 0.45375 0.50125 0.54875 0.59625 0.64375 0.69125 0.73875 0.78625 0.83375 0.88125 0.92875 0.97625 1]\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]==|\u001b[38;5;246maDrift=[0.05 0.0975 0.145 0.1925 0.24 0.2875 0.335 0.3825 0.43 0.4775 0.525 0.5725 0.62 0.6675 0.715 0.7625 0.81 0.8575 0.905 0.9525 1]\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]==|\u001b[38;5;246mndrifts=20\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]==|\u001b[38;5;246maiDrift=[0.05 0.0975 0.145 0.1925 0.24 0.2875 0.335 0.3825 0.43 0.4775 0.525 0.5725 0.62 0.6675 0.715 0.7625 0.81 0.8575 0.905 0.9525]\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]==|\u001b[38;5;246mafDrift=[0.0975 0.145 0.1925 0.24 0.2875 0.335 0.3825 0.43 0.4775 0.525 0.5725 0.62 0.6675 0.715 0.7625 0.81 0.8575 0.905 0.9525 1]\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]==|\u001b[38;5;246maKick=[0.07375 0.12125 0.16875 0.21625 0.26375 0.31125 0.35875 0.40625 0.45375 0.50125 0.54875 0.59625 0.64375 0.69125 0.73875 0.78625 0.83375 0.88125 0.92875 0.97625]\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]==|Read timestepping configuration in '/home/hoellinger/wip3m/results/forcediag1/nsteps20_ts_p3m.h5' done.\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly allocated memory (168 bytes) at 0x55cb087bf8e0 for DUMMY in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mevolve_p3m\u001b[0;36m:\u001b[0;32m557\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly allocated memory (393216 bytes) at 0x55cb08575200 for x in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mevolve_p3m\u001b[0;36m:\u001b[0;32m564\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly allocated memory (393216 bytes) at 0x55cb085d5210 for p in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mevolve_p3m\u001b[0;36m:\u001b[0;32m565\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly allocated memory (393216 bytes) at 0x55cb08abb170 for pp in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mevolve_p3m\u001b[0;36m:\u001b[0;32m566\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]==|\u001b[38;5;246mCorrectly allocated memory (1048576 bytes) at 0x55cb08b1b180 for density_or_Phi in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mevolve_p3m\u001b[0;36m:\u001b[0;32m567\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]====|\u001b[38;5;246mai=0.050000\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]====|\u001b[38;5;246mhubble_ai=4989.477828\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]====|\u001b[38;5;246mD_ai=160.337420\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]==|OutputForceDiagnostic: /data70/hoellinger/WIP3M/forcediag1/force_diagnostic_p3m.txt\n",
"[02:24:41\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]==|OutputSnapshotsBase: particles_\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]====|\u001b[38;5;246mdpm0=1.000000\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]====|\u001b[38;5;246mdpm1=1.000000\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]====|\u001b[38;5;246mdpm2=1.000000\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]==|ModuleP3M: Begin P3M step 1/20, time_kick:0.050000, time_drift=0.050000.\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]====|\u001b[38;5;246mGiven the available memory, 4095 threads could be allocated and 32 threads will be used in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel\u001b[0;36m:\u001b[0;32m347\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]====|\u001b[38;5;246mGiven the available memory, 4095 threads could be allocated and 32 threads will be used in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m73\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]====|Getting density contrast (using 32 cores and 32 arrays, parallel routine 1)...\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]======|\u001b[38;5;246mPerforming CiC binning...\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 0...\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148950000b60 for threadedDensity[9] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 9...\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148940000b60 for threadedDensity[27] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148920000b60 for threadedDensity[12] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148978000b60 for threadedDensity[26] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 12...\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 26...\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148928000b60 for threadedDensity[20] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148980000b60 for threadedDensity[11] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1489b8000b60 for threadedDensity[4] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 11...\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 4...\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 20...\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148990000b60 for threadedDensity[21] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148908000b60 for threadedDensity[8] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 21...\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 8...\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1488dc000b60 for threadedDensity[17] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1488f8000b60 for threadedDensity[19] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 17...\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 19...\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148960000b60 for threadedDensity[13] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1489a0000b60 for threadedDensity[3] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 13...\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 3...\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148988000b60 for threadedDensity[28] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1488d0000b60 for threadedDensity[5] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 28...\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 5...\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 27...\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148968000b60 for threadedDensity[10] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148910000b60 for threadedDensity[23] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 10...\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 23...\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148918000b60 for threadedDensity[15] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1488e8000b60 for threadedDensity[2] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 15...\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 2...\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148900000b60 for threadedDensity[16] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1489b0000b60 for threadedDensity[1] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 16...\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 1...\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1489a8000b60 for threadedDensity[30] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148948000b60 for threadedDensity[31] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 30...\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 31...\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148958000b60 for threadedDensity[22] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1488f0000b60 for threadedDensity[24] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 22...\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 24...\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148930000b60 for threadedDensity[14] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148938000b60 for threadedDensity[18] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 14...\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 18...\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1488e0000b60 for threadedDensity[6] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1488d8000b60 for threadedDensity[29] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 6...\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 29...\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148998000b60 for threadedDensity[25] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148970000b60 for threadedDensity[7] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 25...\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 7...\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 22 done.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 24 done.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 8 done.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 21 done.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 20 done.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 9 done.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 11 done.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 4 done.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 17 done.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 19 done.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 5 done.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 28 done.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 0 done.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 27 done.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 3 done.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 13 done.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 26 done.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 12 done.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 10 done.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 23 done.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 2 done.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 15 done.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 14 done.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 18 done.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 1 done.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 16 done.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 6 done.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 29 done.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 31 done.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 30 done.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 7 done.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 25 done.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]======|\u001b[38;5;246mPerforming CiC done.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]======|\u001b[38;5;246mPerforming CiC reduction...\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x1489b0000b60 for threadedDensity[1] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x1488e8000b60 for threadedDensity[2] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x1489a0000b60 for threadedDensity[3] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x1489b8000b60 for threadedDensity[4] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x1488d0000b60 for threadedDensity[5] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x1488e0000b60 for threadedDensity[6] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148970000b60 for threadedDensity[7] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148908000b60 for threadedDensity[8] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148950000b60 for threadedDensity[9] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148968000b60 for threadedDensity[10] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148980000b60 for threadedDensity[11] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148920000b60 for threadedDensity[12] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148960000b60 for threadedDensity[13] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148930000b60 for threadedDensity[14] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148918000b60 for threadedDensity[15] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148900000b60 for threadedDensity[16] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x1488dc000b60 for threadedDensity[17] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148938000b60 for threadedDensity[18] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x1488f8000b60 for threadedDensity[19] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148928000b60 for threadedDensity[20] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148990000b60 for threadedDensity[21] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148958000b60 for threadedDensity[22] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148910000b60 for threadedDensity[23] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x1488f0000b60 for threadedDensity[24] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148998000b60 for threadedDensity[25] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148978000b60 for threadedDensity[26] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148940000b60 for threadedDensity[27] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148988000b60 for threadedDensity[28] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x1488d8000b60 for threadedDensity[29] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x1489a8000b60 for threadedDensity[30] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148948000b60 for threadedDensity[31] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]======|\u001b[38;5;246mPerforming CiC reduction done.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]====|Getting density contrast (using 32 cores and 32 arrays, parallel routine 1) done.\n",
"[02:24:41\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]====|Getting gravitational potential, periodic boundary conditions (using 32 cores)...\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated memory (1081344 bytes) at 0x55cb08c1b190 for AUX in \u001b[38;5;227mpoisson_solvers.c\u001b[0;36m:\u001b[38;5;192msolve_poisson_DFT\u001b[0;36m:\u001b[0;32m106\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08c1b190 for AUX in \u001b[38;5;227mpoisson_solvers.c\u001b[0;36m:\u001b[38;5;192msolve_poisson_DFT\u001b[0;36m:\u001b[0;32m116\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]====|Getting gravitational potential, periodic boundary conditions (using 32 cores) done.\n",
"[02:24:41\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]====|Kicking particles (using 32 cores)...\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mnkick=0\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mndrift=0\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246maiKick=0.050000\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246maDrift=0.050000\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mafKick=0.073750\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mbeta_delta=-0.080234\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mbeta_lpt_1=0.000000\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mbeta_lpt_2=0.000000\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mbeta_ext=0.000000\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated memory (1048576 bytes) at 0x55cb08c1b190 for g_pad in \u001b[38;5;227mpmcola.c\u001b[0;36m:\u001b[38;5;192mkick_pm_cola\u001b[0;36m:\u001b[0;32m478\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated memory (393216 bytes) at 0x55cb08d1b1a0 for pp in \u001b[38;5;227mpmcola.c\u001b[0;36m:\u001b[38;5;192mkick_pm_cola\u001b[0;36m:\u001b[0;32m554\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Computing short-range forces (using 8 tiles and 32 / 32 cores)...\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (8192 bytes) at 0x55cb0882ae50 for tiles in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m57\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb08635220 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb08d7b1b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb08d9b1c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb08dbb1d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb08ddb1e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb08dfb1f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb08e1b200 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb08e3b210 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb08e5b220 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb08e7b230 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb08e9b240 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb08ebb250 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb08edb260 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb08efb270 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb08f1b280 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb08f3b290 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb08f5b2a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb08f7b2b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb08f9b2c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb08fbb2d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb08fdb2e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb08ffb2f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0901b300 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0903b310 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0905b320 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0907b330 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0909b340 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb090bb350 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb090db360 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb090fb370 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0911b380 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0913b390 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0915b3a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0917b3b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0919b3c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb091bb3d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb091db3e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb091fb3f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0921b400 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0923b410 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0925b420 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0927b430 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0929b440 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb092bb450 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb092db460 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb092fb470 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0931b480 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0933b490 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0935b4a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0937b4b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0939b4c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb093bb4d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb093db4e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb093fb4f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0941b500 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0943b510 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0945b520 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0947b530 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0949b540 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb094bb550 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb094db560 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb094fb570 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0951b580 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0953b590 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0955b5a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0957b5b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0959b5c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb095bb5d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb095db5e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb095fb5f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0961b600 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0963b610 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0965b620 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0967b630 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0969b640 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb096bb650 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb096db660 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb096fb670 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0971b680 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0973b690 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0975b6a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0977b6b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0979b6c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb097bb6d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb097db6e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb097fb6f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0981b700 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0983b710 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0985b720 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0987b730 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0989b740 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb098bb750 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb098db760 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb098fb770 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0991b780 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0993b790 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0995b7a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0997b7b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0999b7c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb099bb7d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb099db7e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb099fb7f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09a1b800 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09a3b810 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09a5b820 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09a7b830 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09a9b840 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09abb850 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09adb860 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09afb870 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09b1b880 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09b3b890 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09b5b8a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09b7b8b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09b9b8c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09bbb8d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09bdb8e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09bfb8f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09c1b900 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09c3b910 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09c5b920 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09c7b930 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09c9b940 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09cbb950 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09cdb960 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09cfb970 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09d1b980 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09d3b990 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09d5b9a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09d7b9b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09d9b9c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09dbb9d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09ddb9e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09dfb9f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09e1ba00 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09e3ba10 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09e5ba20 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09e7ba30 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09e9ba40 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09ebba50 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09edba60 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09efba70 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09f1ba80 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09f3ba90 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09f5baa0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09f7bab0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09f9bac0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09fbbad0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09fdbae0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09ffbaf0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a01bb00 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a03bb10 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a05bb20 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a07bb30 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a09bb40 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a0bbb50 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a0dbb60 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a0fbb70 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a11bb80 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a13bb90 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a15bba0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a17bbb0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a19bbc0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a1bbbd0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a1dbbe0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a1fbbf0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a21bc00 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a23bc10 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a25bc20 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a27bc30 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a29bc40 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a2bbc50 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a2dbc60 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a2fbc70 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a31bc80 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a33bc90 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a35bca0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a37bcb0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a39bcc0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a3bbcd0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a3dbce0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a3fbcf0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a41bd00 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a43bd10 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a45bd20 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a47bd30 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a49bd40 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a4bbd50 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a4dbd60 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a4fbd70 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a51bd80 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a53bd90 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a55bda0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a57bdb0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a59bdc0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a5bbdd0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a5dbde0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a5fbdf0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a61be00 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a63be10 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a65be20 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a67be30 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a69be40 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a6bbe50 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a6dbe60 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a6fbe70 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a71be80 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a73be90 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a75bea0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a77beb0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a79bec0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a7bbed0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a7dbee0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a7fbef0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a81bf00 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a83bf10 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a85bf20 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a87bf30 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a89bf40 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a8bbf50 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a8dbf60 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a8fbf70 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a91bf80 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a93bf90 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a95bfa0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a97bfb0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a99bfc0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a9bbfd0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a9dbfe0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a9fbff0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0aa1c000 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0aa3c010 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0aa5c020 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0aa7c030 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0aa9c040 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0aabc050 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0aadc060 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0aafc070 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ab1c080 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ab3c090 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ab5c0a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ab7c0b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ab9c0c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0abbc0d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0abdc0e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0abfc0f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ac1c100 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ac3c110 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ac5c120 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ac7c130 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ac9c140 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0acbc150 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0acdc160 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0acfc170 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ad1c180 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ad3c190 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ad5c1a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ad7c1b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ad9c1c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0adbc1d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0addc1e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0adfc1f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ae1c200 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ae3c210 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ae5c220 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ae7c230 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ae9c240 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0aebc250 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0aedc260 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0aefc270 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0af1c280 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0af3c290 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0af5c2a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0af7c2b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0af9c2c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0afbc2d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0afdc2e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0affc2f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b01c300 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b03c310 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b05c320 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b07c330 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b09c340 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b0bc350 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b0dc360 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b0fc370 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b11c380 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b13c390 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b15c3a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b17c3b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b19c3c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b1bc3d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b1dc3e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b1fc3f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b21c400 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b23c410 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b25c420 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b27c430 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b29c440 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b2bc450 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b2dc460 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b2fc470 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b31c480 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b33c490 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b35c4a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b37c4b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b39c4c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b3bc4d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b3dc4e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b3fc4f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b41c500 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b43c510 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b45c520 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b47c530 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b49c540 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b4bc550 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b4dc560 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b4fc570 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b51c580 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b53c590 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b55c5a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b57c5b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b59c5c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b5bc5d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b5dc5e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b5fc5f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b61c600 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b63c610 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b65c620 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b67c630 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b69c640 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b6bc650 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b6dc660 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b6fc670 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b71c680 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b73c690 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b75c6a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b77c6b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b79c6c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b7bc6d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b7dc6e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b7fc6f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b81c700 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b83c710 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b85c720 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b87c730 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b89c740 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b8bc750 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b8dc760 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b8fc770 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b91c780 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b93c790 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b95c7a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b97c7b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b99c7c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b9bc7d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b9dc7e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b9fc7f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ba1c800 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ba3c810 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ba5c820 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ba7c830 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ba9c840 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0babc850 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0badc860 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bafc870 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bb1c880 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bb3c890 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bb5c8a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bb7c8b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bb9c8c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bbbc8d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bbdc8e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bbfc8f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bc1c900 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bc3c910 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bc5c920 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bc7c930 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bc9c940 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bcbc950 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bcdc960 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bcfc970 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bd1c980 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bd3c990 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bd5c9a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bd7c9b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bd9c9c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bdbc9d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bddc9e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bdfc9f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0be1ca00 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0be3ca10 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0be5ca20 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0be7ca30 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0be9ca40 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bebca50 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bedca60 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0befca70 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bf1ca80 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bf3ca90 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bf5caa0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bf7cab0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bf9cac0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bfbcad0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bfdcae0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bffcaf0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c01cb00 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c03cb10 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c05cb20 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c07cb30 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c09cb40 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c0bcb50 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c0dcb60 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c0fcb70 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c11cb80 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c13cb90 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c15cba0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c17cbb0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c19cbc0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c1bcbd0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c1dcbe0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c1fcbf0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c21cc00 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c23cc10 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c25cc20 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c27cc30 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c29cc40 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c2bcc50 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c2dcc60 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c2fcc70 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c31cc80 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c33cc90 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c35cca0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c37ccb0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c39ccc0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c3bccd0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c3dcce0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c3fccf0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c41cd00 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c43cd10 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c45cd20 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c47cd30 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c49cd40 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c4bcd50 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c4dcd60 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c4fcd70 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c51cd80 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c53cd90 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c55cda0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c57cdb0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c59cdc0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c5bcdd0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c5dcde0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c5fcdf0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c61ce00 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c63ce10 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c65ce20 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c67ce30 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c69ce40 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c6bce50 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c6dce60 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c6fce70 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c71ce80 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c73ce90 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c75cea0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c77ceb0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c79cec0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c7bced0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c7dcee0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c7fcef0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c81cf00 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c83cf10 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c85cf20 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c87cf30 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c89cf40 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c8bcf50 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c8dcf60 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c8fcf70 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c91cf80 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c93cf90 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c95cfa0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c97cfb0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c99cfc0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c9bcfd0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c9dcfe0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c9fcff0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ca1d000 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ca3d010 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ca5d020 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ca7d030 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ca9d040 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0cabd050 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0cadd060 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0cafd070 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0cb1d080 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0cb3d090 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0cb5d0a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0cb7d0b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0cb9d0c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0cbbd0d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0cbdd0e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0cbfd0f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0cc1d100 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0cc3d110 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0cc5d120 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0cc7d130 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0cc9d140 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ccbd150 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ccdd160 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ccfd170 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0cd1d180 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0cd3d190 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08635220 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08d7b1b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08d9b1c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08dbb1d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08ddb1e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08dfb1f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08e1b200 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08e3b210 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08e5b220 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08e7b230 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08e9b240 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08ebb250 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08edb260 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08efb270 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08f1b280 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08f3b290 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08f5b2a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08f7b2b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08f9b2c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08fbb2d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08fdb2e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08ffb2f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0901b300 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0903b310 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0905b320 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0907b330 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0909b340 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb090bb350 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb090db360 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb090fb370 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0911b380 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0913b390 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0915b3a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0917b3b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0919b3c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb091bb3d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb091db3e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb091fb3f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0921b400 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0923b410 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0925b420 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0927b430 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0929b440 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb092bb450 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb092db460 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb092fb470 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0931b480 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0933b490 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0935b4a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0937b4b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0939b4c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb093bb4d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb093db4e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb093fb4f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0941b500 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0943b510 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0945b520 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0947b530 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0949b540 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb094bb550 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb094db560 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb094fb570 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0951b580 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0953b590 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0955b5a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0957b5b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0959b5c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb095bb5d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb095db5e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb095fb5f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0961b600 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0963b610 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0965b620 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0967b630 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0969b640 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb096bb650 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb096db660 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb096fb670 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0971b680 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0973b690 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0975b6a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0977b6b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0979b6c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb097bb6d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb097db6e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb097fb6f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0981b700 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0983b710 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0985b720 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0987b730 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0989b740 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb098bb750 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb098db760 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb098fb770 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0991b780 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0993b790 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0995b7a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0997b7b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0999b7c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb099bb7d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb099db7e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb099fb7f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09a1b800 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09a3b810 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09a5b820 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09a7b830 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09a9b840 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09abb850 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09adb860 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09afb870 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09b1b880 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09b3b890 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09b5b8a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09b7b8b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09b9b8c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09bbb8d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09bdb8e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09bfb8f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09c1b900 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09c3b910 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09c5b920 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09c7b930 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09c9b940 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09cbb950 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09cdb960 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09cfb970 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09d1b980 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09d3b990 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09d5b9a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09d7b9b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09d9b9c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09dbb9d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09ddb9e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09dfb9f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09e1ba00 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09e3ba10 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09e5ba20 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09e7ba30 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09e9ba40 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09ebba50 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09edba60 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09efba70 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09f1ba80 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09f3ba90 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09f5baa0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09f7bab0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09f9bac0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09fbbad0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09fdbae0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09ffbaf0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a01bb00 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a03bb10 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a05bb20 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a07bb30 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a09bb40 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a0bbb50 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a0dbb60 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a0fbb70 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a11bb80 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a13bb90 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a15bba0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a17bbb0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a19bbc0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a1bbbd0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a1dbbe0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a1fbbf0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a21bc00 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a23bc10 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a25bc20 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a27bc30 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a29bc40 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a2bbc50 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a2dbc60 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a2fbc70 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a31bc80 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a33bc90 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a35bca0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a37bcb0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a39bcc0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a3bbcd0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a3dbce0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a3fbcf0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a41bd00 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a43bd10 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a45bd20 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a47bd30 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a49bd40 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a4bbd50 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a4dbd60 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a4fbd70 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a51bd80 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a53bd90 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a55bda0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a57bdb0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a59bdc0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a5bbdd0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a5dbde0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a5fbdf0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a61be00 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a63be10 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a65be20 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a67be30 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a69be40 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a6bbe50 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a6dbe60 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a6fbe70 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a71be80 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a73be90 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a75bea0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a77beb0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a79bec0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a7bbed0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a7dbee0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a7fbef0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a81bf00 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a83bf10 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a85bf20 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a87bf30 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a89bf40 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a8bbf50 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a8dbf60 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a8fbf70 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a91bf80 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a93bf90 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a95bfa0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a97bfb0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a99bfc0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a9bbfd0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a9dbfe0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a9fbff0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0aa1c000 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0aa3c010 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0aa5c020 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0aa7c030 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0aa9c040 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0aabc050 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0aadc060 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0aafc070 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ab1c080 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ab3c090 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ab5c0a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ab7c0b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ab9c0c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0abbc0d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0abdc0e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0abfc0f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ac1c100 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ac3c110 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ac5c120 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ac7c130 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ac9c140 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0acbc150 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0acdc160 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0acfc170 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ad1c180 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ad3c190 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ad5c1a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ad7c1b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ad9c1c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0adbc1d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0addc1e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0adfc1f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ae1c200 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ae3c210 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ae5c220 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ae7c230 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ae9c240 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0aebc250 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0aedc260 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0aefc270 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0af1c280 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0af3c290 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0af5c2a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0af7c2b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0af9c2c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0afbc2d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0afdc2e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0affc2f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b01c300 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b03c310 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b05c320 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b07c330 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b09c340 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b0bc350 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b0dc360 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b0fc370 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b11c380 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b13c390 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b15c3a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b17c3b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b19c3c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b1bc3d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b1dc3e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b1fc3f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b21c400 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b23c410 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b25c420 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b27c430 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b29c440 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b2bc450 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b2dc460 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b2fc470 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b31c480 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b33c490 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b35c4a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b37c4b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b39c4c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b3bc4d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b3dc4e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b3fc4f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b41c500 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b43c510 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b45c520 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b47c530 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b49c540 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b4bc550 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b4dc560 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b4fc570 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b51c580 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b53c590 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b55c5a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b57c5b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b59c5c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b5bc5d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b5dc5e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b5fc5f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b61c600 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b63c610 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b65c620 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b67c630 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b69c640 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b6bc650 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b6dc660 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b6fc670 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b71c680 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b73c690 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b75c6a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b77c6b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b79c6c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b7bc6d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b7dc6e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b7fc6f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b81c700 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b83c710 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b85c720 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b87c730 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b89c740 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b8bc750 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b8dc760 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b8fc770 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b91c780 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b93c790 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b95c7a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b97c7b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b99c7c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b9bc7d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b9dc7e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b9fc7f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ba1c800 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ba3c810 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ba5c820 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ba7c830 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ba9c840 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0babc850 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0badc860 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bafc870 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bb1c880 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bb3c890 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bb5c8a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bb7c8b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bb9c8c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bbbc8d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bbdc8e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bbfc8f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bc1c900 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bc3c910 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bc5c920 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bc7c930 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bc9c940 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bcbc950 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bcdc960 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bcfc970 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bd1c980 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bd3c990 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bd5c9a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bd7c9b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bd9c9c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bdbc9d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bddc9e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bdfc9f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0be1ca00 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0be3ca10 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0be5ca20 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0be7ca30 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0be9ca40 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bebca50 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bedca60 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0befca70 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bf1ca80 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bf3ca90 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bf5caa0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bf7cab0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bf9cac0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bfbcad0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bfdcae0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bffcaf0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c01cb00 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c03cb10 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c05cb20 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c07cb30 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c09cb40 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c0bcb50 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c0dcb60 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c0fcb70 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c11cb80 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c13cb90 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c15cba0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c17cbb0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c19cbc0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c1bcbd0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c1dcbe0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c1fcbf0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c21cc00 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c23cc10 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c25cc20 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c27cc30 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c29cc40 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c2bcc50 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c2dcc60 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c2fcc70 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c31cc80 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c33cc90 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c35cca0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c37ccb0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c39ccc0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c3bccd0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c3dcce0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c3fccf0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c41cd00 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c43cd10 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c45cd20 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c47cd30 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c49cd40 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c4bcd50 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c4dcd60 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c4fcd70 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c51cd80 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c53cd90 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c55cda0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c57cdb0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c59cdc0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c5bcdd0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c5dcde0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c5fcdf0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c61ce00 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c63ce10 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c65ce20 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c67ce30 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c69ce40 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c6bce50 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c6dce60 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c6fce70 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c71ce80 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c73ce90 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c75cea0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c77ceb0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c79cec0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c7bced0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c7dcee0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c7fcef0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c81cf00 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c83cf10 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c85cf20 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c87cf30 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c89cf40 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c8bcf50 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c8dcf60 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c8fcf70 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c91cf80 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c93cf90 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c95cfa0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c97cfb0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c99cfc0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c9bcfd0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c9dcfe0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c9fcff0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ca1d000 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ca3d010 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ca5d020 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ca7d030 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ca9d040 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0cabd050 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0cadd060 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0cafd070 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0cb1d080 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0cb3d090 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0cb5d0a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0cb7d0b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0cb9d0c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0cbbd0d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0cbdd0e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0cbfd0f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0cc1d100 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0cc3d110 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0cc5d120 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0cc7d130 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0cc9d140 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ccbd150 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ccdd160 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ccfd170 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0cd1d180 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0cd3d190 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0882ae50 for tiles in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m211\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Computing short-range forces (using 8 tiles and 32 / 32 cores) done.\n",
"[02:24:41\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Acceleration loop, direction 0...\n",
"[02:24:41\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Acceleration loop, direction 0 done.\n",
"[02:24:41\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Kick loop, direction 0...\n",
"[02:24:41\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Kick loop, direction 0 done.\n",
"[02:24:41\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Acceleration loop, direction 1...\n",
"[02:24:41\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Acceleration loop, direction 1 done.\n",
"[02:24:41\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Kick loop, direction 1...\n",
"[02:24:41\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Kick loop, direction 1 done.\n",
"[02:24:41\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Acceleration loop, direction 2...\n",
"[02:24:41\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Acceleration loop, direction 2 done.\n",
"[02:24:41\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Kick loop, direction 2...\n",
"[02:24:41\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Kick loop, direction 2 done.\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08c1b190 for g_pad in \u001b[38;5;227mpmcola.c\u001b[0;36m:\u001b[38;5;192mkick_pm_cola\u001b[0;36m:\u001b[0;32m592\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08d1b1a0 for pp in \u001b[38;5;227mpmcola.c\u001b[0;36m:\u001b[38;5;192mkick_pm_cola\u001b[0;36m:\u001b[0;32m598\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]====|Kicking particles (using 32 cores) done.\n",
"[02:24:41\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]====|Drifting particles (using 32 cores)...\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mndrift=0\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mnkick=0\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246maiDrift=0.050000\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246maKick=0.073750\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mafDrift=0.097500\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246malpha_p=4.550459\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246malpha_lpt_1=0.000000\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246malpha_lpt_2=0.000000\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246malpha_ext=0.000000\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Drift loop, direction 0...\n",
"[02:24:41\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Drift loop, direction 0 done.\n",
"[02:24:41\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Drift loop, direction 1...\n",
"[02:24:41\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Drift loop, direction 1 done.\n",
"[02:24:41\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Drift loop, direction 2...\n",
"[02:24:41\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Drift loop, direction 2 done.\n",
"[02:24:41\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]====|Drifting particles (using 32 cores) done.\n",
"[02:24:41\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]==|ModuleP3M: End P3M step 1/20, time_kick:0.073750, time_drift=0.097500.\n",
"[02:24:41\u001b[00m|\u001b[38;5;159mTIMER \u001b[00m]==|Step 1/20: Density: 0.411 CPU - 0.014 wallclock seconds used.\n",
"[02:24:41\u001b[00m|\u001b[38;5;159mTIMER \u001b[00m]==|Step 1/20: Potential: 1.000 CPU - 0.036 wallclock seconds used.\n",
"[02:24:41\u001b[00m|\u001b[38;5;159mTIMER \u001b[00m]==|Step 1/20: Accelerations (long-range): 1.038 CPU - 0.043 wallclock seconds used.\n",
"[02:24:41\u001b[00m|\u001b[38;5;159mTIMER \u001b[00m]==|Step 1/20: Accelerations (short-range): 2.602 CPU - 0.100 wallclock seconds used.\n",
"[02:24:41\u001b[00m|\u001b[38;5;159mTIMER \u001b[00m]==|Step 1/20: Kick: 1.125 CPU - 0.038 wallclock seconds used.\n",
"[02:24:41\u001b[00m|\u001b[38;5;159mTIMER \u001b[00m]==|Step 1/20: Drift: 2.269 CPU - 0.074 wallclock seconds used.\n",
"[02:24:41\u001b[00m|\u001b[38;5;159mTIMER \u001b[00m]==|Step 1/20: Inputs: 0.000 CPU - 0.000 wallclock seconds used.\n",
"[02:24:41\u001b[00m|\u001b[38;5;159mTIMER \u001b[00m]==|Step 1/20: Diagnostic: 0.000 CPU - 0.000 wallclock seconds used.\n",
"[02:24:41\u001b[00m|\u001b[38;5;159mTIMER \u001b[00m]==|Step 1/20: Outputs: 0.000 CPU - 0.000 wallclock seconds used.\n",
"[02:24:41\u001b[00m|\u001b[38;5;159mTIMER \u001b[00m]==|Step 1/20: Total Evolution: 8.445 CPU - 0.305 wallclock seconds used.\n",
"[02:24:41\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]==|ModuleP3M: Begin P3M step 2/20, time_kick:0.073750, time_drift=0.097500.\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]====|\u001b[38;5;246mGiven the available memory, 4095 threads could be allocated and 32 threads will be used in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel\u001b[0;36m:\u001b[0;32m347\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]====|\u001b[38;5;246mGiven the available memory, 4095 threads could be allocated and 32 threads will be used in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m73\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]====|Getting density contrast (using 32 cores and 32 arrays, parallel routine 1)...\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]======|\u001b[38;5;246mPerforming CiC binning...\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 0...\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1488f8000b60 for threadedDensity[19] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1488dc000b60 for threadedDensity[17] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 19...\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 17...\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148950000b60 for threadedDensity[9] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148928000b60 for threadedDensity[20] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 9...\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 20...\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148940000b60 for threadedDensity[27] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148980000b60 for threadedDensity[11] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1489b8000b60 for threadedDensity[4] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 11...\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 4...\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148990000b60 for threadedDensity[21] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148908000b60 for threadedDensity[8] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 21...\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 8...\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148988000b60 for threadedDensity[28] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 27...\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 28...\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1488d0000b60 for threadedDensity[5] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148978000b60 for threadedDensity[26] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 5...\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 26...\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1489a0000b60 for threadedDensity[3] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148960000b60 for threadedDensity[13] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 3...\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 13...\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148910000b60 for threadedDensity[23] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148968000b60 for threadedDensity[10] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 23...\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 10...\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148930000b60 for threadedDensity[14] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148938000b60 for threadedDensity[18] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 14...\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 18...\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148918000b60 for threadedDensity[15] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1488e8000b60 for threadedDensity[2] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 15...\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 2...\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1488f0000b60 for threadedDensity[24] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148958000b60 for threadedDensity[22] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 24...\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 22...\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148900000b60 for threadedDensity[16] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1489a8000b60 for threadedDensity[30] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1489b0000b60 for threadedDensity[1] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 30...\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 1...\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148920000b60 for threadedDensity[12] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 16...\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 12...\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1488d8000b60 for threadedDensity[29] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1488e0000b60 for threadedDensity[6] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 29...\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 6...\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148970000b60 for threadedDensity[7] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148998000b60 for threadedDensity[25] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 7...\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 25...\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148948000b60 for threadedDensity[31] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 31...\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 0 done.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 27 done.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 20 done.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 9 done.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 21 done.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 8 done.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 19 done.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 17 done.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 11 done.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 4 done.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 28 done.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 12 done.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 13 done.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 3 done.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 5 done.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 26 done.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 2 done.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 15 done.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 10 done.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 23 done.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 16 done.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 31 done.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 30 done.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 14 done.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 18 done.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 24 done.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 22 done.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 29 done.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 6 done.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 25 done.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 7 done.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 1 done.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]======|\u001b[38;5;246mPerforming CiC done.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]======|\u001b[38;5;246mPerforming CiC reduction...\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x1489b0000b60 for threadedDensity[1] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x1488e8000b60 for threadedDensity[2] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x1489a0000b60 for threadedDensity[3] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x1489b8000b60 for threadedDensity[4] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x1488d0000b60 for threadedDensity[5] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x1488e0000b60 for threadedDensity[6] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148970000b60 for threadedDensity[7] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148908000b60 for threadedDensity[8] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148950000b60 for threadedDensity[9] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148968000b60 for threadedDensity[10] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148980000b60 for threadedDensity[11] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148920000b60 for threadedDensity[12] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148960000b60 for threadedDensity[13] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148930000b60 for threadedDensity[14] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148918000b60 for threadedDensity[15] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148900000b60 for threadedDensity[16] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x1488dc000b60 for threadedDensity[17] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148938000b60 for threadedDensity[18] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x1488f8000b60 for threadedDensity[19] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148928000b60 for threadedDensity[20] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148990000b60 for threadedDensity[21] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148958000b60 for threadedDensity[22] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148910000b60 for threadedDensity[23] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x1488f0000b60 for threadedDensity[24] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148998000b60 for threadedDensity[25] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148978000b60 for threadedDensity[26] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148940000b60 for threadedDensity[27] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148988000b60 for threadedDensity[28] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x1488d8000b60 for threadedDensity[29] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x1489a8000b60 for threadedDensity[30] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148948000b60 for threadedDensity[31] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]======|\u001b[38;5;246mPerforming CiC reduction done.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]====|Getting density contrast (using 32 cores and 32 arrays, parallel routine 1) done.\n",
"[02:24:41\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]====|Getting gravitational potential, periodic boundary conditions (using 32 cores)...\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated memory (1081344 bytes) at 0x55cb08c1b190 for AUX in \u001b[38;5;227mpoisson_solvers.c\u001b[0;36m:\u001b[38;5;192msolve_poisson_DFT\u001b[0;36m:\u001b[0;32m106\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08c1b190 for AUX in \u001b[38;5;227mpoisson_solvers.c\u001b[0;36m:\u001b[38;5;192msolve_poisson_DFT\u001b[0;36m:\u001b[0;32m116\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]====|Getting gravitational potential, periodic boundary conditions (using 32 cores) done.\n",
"[02:24:41\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]====|Kicking particles (using 32 cores)...\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mnkick=1\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mndrift=1\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246maiKick=0.073750\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246maDrift=0.097500\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mafKick=0.121250\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mbeta_delta=-0.128106\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mbeta_lpt_1=0.000000\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mbeta_lpt_2=0.000000\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mbeta_ext=0.000000\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated memory (1048576 bytes) at 0x55cb08c1b190 for g_pad in \u001b[38;5;227mpmcola.c\u001b[0;36m:\u001b[38;5;192mkick_pm_cola\u001b[0;36m:\u001b[0;32m478\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated memory (393216 bytes) at 0x55cb08d1b1a0 for pp in \u001b[38;5;227mpmcola.c\u001b[0;36m:\u001b[38;5;192mkick_pm_cola\u001b[0;36m:\u001b[0;32m554\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Computing short-range forces (using 8 tiles and 32 / 32 cores)...\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (8192 bytes) at 0x55cb087c1430 for tiles in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m57\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb08635220 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb08d7b1b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb08d9b1c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb08dbb1d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb08ddb1e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb08dfb1f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb08e1b200 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb08e3b210 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb08e5b220 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb08e7b230 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb08e9b240 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb08ebb250 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb08edb260 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb08efb270 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb08f1b280 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb08f3b290 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb08f5b2a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb08f7b2b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb08f9b2c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb08fbb2d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb08fdb2e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb08ffb2f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0901b300 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0903b310 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0905b320 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0907b330 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0909b340 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb090bb350 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb090db360 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb090fb370 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0911b380 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0913b390 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0915b3a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0917b3b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0919b3c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb091bb3d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb091db3e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb091fb3f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0921b400 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0923b410 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0925b420 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0927b430 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0929b440 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb092bb450 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb092db460 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb092fb470 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0931b480 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0933b490 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0935b4a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0937b4b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0939b4c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb093bb4d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb093db4e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb093fb4f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0941b500 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0943b510 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0945b520 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0947b530 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0949b540 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb094bb550 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb094db560 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb094fb570 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0951b580 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0953b590 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0955b5a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0957b5b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0959b5c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb095bb5d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb095db5e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb095fb5f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0961b600 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0963b610 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0965b620 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0967b630 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0969b640 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb096bb650 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb096db660 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb096fb670 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0971b680 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0973b690 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0975b6a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0977b6b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0979b6c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb097bb6d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb097db6e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb097fb6f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0981b700 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0983b710 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0985b720 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0987b730 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0989b740 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb098bb750 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb098db760 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb098fb770 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0991b780 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0993b790 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0995b7a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0997b7b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0999b7c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb099bb7d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb099db7e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb099fb7f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09a1b800 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09a3b810 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09a5b820 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09a7b830 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09a9b840 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09abb850 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09adb860 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09afb870 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09b1b880 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09b3b890 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09b5b8a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09b7b8b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09b9b8c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09bbb8d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09bdb8e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09bfb8f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09c1b900 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09c3b910 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09c5b920 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09c7b930 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09c9b940 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09cbb950 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09cdb960 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09cfb970 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09d1b980 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09d3b990 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09d5b9a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09d7b9b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09d9b9c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09dbb9d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09ddb9e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09dfb9f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09e1ba00 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09e3ba10 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09e5ba20 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09e7ba30 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09e9ba40 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09ebba50 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09edba60 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09efba70 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09f1ba80 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09f3ba90 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09f5baa0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09f7bab0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09f9bac0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09fbbad0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09fdbae0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09ffbaf0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a01bb00 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a03bb10 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a05bb20 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a07bb30 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a09bb40 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a0bbb50 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a0dbb60 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a0fbb70 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a11bb80 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a13bb90 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a15bba0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a17bbb0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a19bbc0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a1bbbd0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a1dbbe0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a1fbbf0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a21bc00 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a23bc10 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a25bc20 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a27bc30 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a29bc40 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a2bbc50 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a2dbc60 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a2fbc70 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a31bc80 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a33bc90 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a35bca0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a37bcb0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a39bcc0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a3bbcd0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a3dbce0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a3fbcf0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a41bd00 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a43bd10 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a45bd20 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a47bd30 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a49bd40 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a4bbd50 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a4dbd60 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a4fbd70 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a51bd80 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a53bd90 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a55bda0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a57bdb0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a59bdc0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a5bbdd0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a5dbde0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a5fbdf0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a61be00 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a63be10 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a65be20 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a67be30 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a69be40 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a6bbe50 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a6dbe60 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a6fbe70 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a71be80 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a73be90 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a75bea0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a77beb0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a79bec0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a7bbed0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a7dbee0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a7fbef0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a81bf00 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a83bf10 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a85bf20 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a87bf30 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a89bf40 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a8bbf50 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a8dbf60 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a8fbf70 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a91bf80 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a93bf90 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a95bfa0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a97bfb0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a99bfc0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a9bbfd0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a9dbfe0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a9fbff0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0aa1c000 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0aa3c010 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0aa5c020 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0aa7c030 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0aa9c040 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0aabc050 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0aadc060 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0aafc070 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ab1c080 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ab3c090 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ab5c0a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ab7c0b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ab9c0c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0abbc0d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0abdc0e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0abfc0f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ac1c100 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ac3c110 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ac5c120 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ac7c130 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ac9c140 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0acbc150 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0acdc160 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0acfc170 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ad1c180 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ad3c190 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ad5c1a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ad7c1b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ad9c1c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0adbc1d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0addc1e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0adfc1f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ae1c200 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ae3c210 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ae5c220 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ae7c230 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ae9c240 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0aebc250 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0aedc260 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0aefc270 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0af1c280 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0af3c290 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0af5c2a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0af7c2b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0af9c2c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0afbc2d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0afdc2e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0affc2f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b01c300 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b03c310 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b05c320 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b07c330 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b09c340 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b0bc350 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b0dc360 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b0fc370 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b11c380 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b13c390 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b15c3a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b17c3b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b19c3c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b1bc3d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b1dc3e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b1fc3f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b21c400 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b23c410 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b25c420 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b27c430 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b29c440 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b2bc450 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b2dc460 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b2fc470 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b31c480 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b33c490 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b35c4a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b37c4b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b39c4c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b3bc4d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b3dc4e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b3fc4f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b41c500 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b43c510 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b45c520 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b47c530 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b49c540 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b4bc550 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b4dc560 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b4fc570 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b51c580 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b53c590 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b55c5a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b57c5b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b59c5c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b5bc5d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b5dc5e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b5fc5f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b61c600 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b63c610 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b65c620 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b67c630 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b69c640 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b6bc650 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b6dc660 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b6fc670 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b71c680 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b73c690 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b75c6a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b77c6b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b79c6c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b7bc6d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b7dc6e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b7fc6f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b81c700 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b83c710 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b85c720 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b87c730 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b89c740 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b8bc750 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b8dc760 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b8fc770 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b91c780 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b93c790 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b95c7a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b97c7b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b99c7c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b9bc7d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b9dc7e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b9fc7f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ba1c800 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ba3c810 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ba5c820 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ba7c830 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ba9c840 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0babc850 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0badc860 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bafc870 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bb1c880 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bb3c890 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bb5c8a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bb7c8b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bb9c8c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bbbc8d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bbdc8e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bbfc8f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bc1c900 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bc3c910 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bc5c920 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bc7c930 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bc9c940 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bcbc950 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bcdc960 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bcfc970 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bd1c980 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bd3c990 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bd5c9a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bd7c9b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bd9c9c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bdbc9d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bddc9e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bdfc9f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0be1ca00 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0be3ca10 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0be5ca20 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0be7ca30 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0be9ca40 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bebca50 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bedca60 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0befca70 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bf1ca80 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bf3ca90 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bf5caa0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bf7cab0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bf9cac0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bfbcad0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bfdcae0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bffcaf0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c01cb00 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c03cb10 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c05cb20 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c07cb30 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c09cb40 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c0bcb50 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c0dcb60 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c0fcb70 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c11cb80 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c13cb90 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c15cba0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c17cbb0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c19cbc0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c1bcbd0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c1dcbe0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c1fcbf0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c21cc00 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c23cc10 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c25cc20 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c27cc30 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c29cc40 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c2bcc50 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c2dcc60 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c2fcc70 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c31cc80 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c33cc90 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c35cca0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c37ccb0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c39ccc0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c3bccd0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c3dcce0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c3fccf0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c41cd00 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c43cd10 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c45cd20 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c47cd30 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c49cd40 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c4bcd50 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c4dcd60 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c4fcd70 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c51cd80 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c53cd90 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c55cda0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c57cdb0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c59cdc0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c5bcdd0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c5dcde0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c5fcdf0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c61ce00 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c63ce10 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c65ce20 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c67ce30 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c69ce40 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c6bce50 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c6dce60 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c6fce70 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c71ce80 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c73ce90 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c75cea0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c77ceb0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c79cec0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c7bced0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c7dcee0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c7fcef0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c81cf00 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c83cf10 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c85cf20 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c87cf30 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c89cf40 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c8bcf50 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c8dcf60 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c8fcf70 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c91cf80 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c93cf90 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c95cfa0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c97cfb0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c99cfc0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c9bcfd0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c9dcfe0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c9fcff0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ca1d000 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ca3d010 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ca5d020 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ca7d030 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ca9d040 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0cabd050 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0cadd060 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0cafd070 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0cb1d080 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0cb3d090 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0cb5d0a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0cb7d0b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0cb9d0c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0cbbd0d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0cbdd0e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0cbfd0f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0cc1d100 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0cc3d110 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0cc5d120 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0cc7d130 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0cc9d140 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ccbd150 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ccdd160 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ccfd170 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0cd1d180 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0cd3d190 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08635220 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08d7b1b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08d9b1c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08dbb1d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08ddb1e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08dfb1f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08e1b200 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08e3b210 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08e5b220 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08e7b230 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08e9b240 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08ebb250 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08edb260 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08efb270 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08f1b280 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08f3b290 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08f5b2a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08f7b2b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08f9b2c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08fbb2d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08fdb2e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08ffb2f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0901b300 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0903b310 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0905b320 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0907b330 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0909b340 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb090bb350 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb090db360 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb090fb370 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0911b380 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0913b390 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0915b3a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0917b3b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0919b3c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb091bb3d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb091db3e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb091fb3f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0921b400 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0923b410 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0925b420 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0927b430 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0929b440 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb092bb450 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb092db460 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb092fb470 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0931b480 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0933b490 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0935b4a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0937b4b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0939b4c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb093bb4d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb093db4e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb093fb4f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0941b500 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0943b510 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0945b520 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0947b530 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0949b540 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb094bb550 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb094db560 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb094fb570 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0951b580 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0953b590 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0955b5a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0957b5b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0959b5c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb095bb5d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb095db5e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb095fb5f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0961b600 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0963b610 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0965b620 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0967b630 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0969b640 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb096bb650 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb096db660 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb096fb670 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0971b680 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0973b690 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0975b6a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0977b6b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0979b6c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb097bb6d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb097db6e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb097fb6f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0981b700 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0983b710 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0985b720 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0987b730 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0989b740 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb098bb750 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb098db760 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb098fb770 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0991b780 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0993b790 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0995b7a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0997b7b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0999b7c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb099bb7d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb099db7e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb099fb7f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09a1b800 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09a3b810 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09a5b820 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09a7b830 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09a9b840 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09abb850 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09adb860 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09afb870 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09b1b880 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09b3b890 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09b5b8a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09b7b8b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09b9b8c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09bbb8d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09bdb8e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09bfb8f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09c1b900 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09c3b910 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09c5b920 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09c7b930 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09c9b940 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09cbb950 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09cdb960 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09cfb970 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09d1b980 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09d3b990 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09d5b9a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09d7b9b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09d9b9c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09dbb9d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09ddb9e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09dfb9f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09e1ba00 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09e3ba10 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09e5ba20 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09e7ba30 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09e9ba40 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09ebba50 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09edba60 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09efba70 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09f1ba80 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09f3ba90 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09f5baa0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09f7bab0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09f9bac0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09fbbad0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09fdbae0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09ffbaf0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a01bb00 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a03bb10 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a05bb20 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a07bb30 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a09bb40 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a0bbb50 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a0dbb60 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a0fbb70 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a11bb80 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a13bb90 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a15bba0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a17bbb0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a19bbc0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a1bbbd0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a1dbbe0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a1fbbf0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a21bc00 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a23bc10 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a25bc20 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a27bc30 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a29bc40 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a2bbc50 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a2dbc60 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a2fbc70 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a31bc80 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a33bc90 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a35bca0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a37bcb0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a39bcc0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a3bbcd0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a3dbce0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a3fbcf0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a41bd00 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a43bd10 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a45bd20 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a47bd30 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a49bd40 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a4bbd50 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a4dbd60 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a4fbd70 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a51bd80 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a53bd90 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a55bda0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a57bdb0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a59bdc0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a5bbdd0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a5dbde0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a5fbdf0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a61be00 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a63be10 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a65be20 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a67be30 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a69be40 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a6bbe50 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a6dbe60 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a6fbe70 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a71be80 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a73be90 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a75bea0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a77beb0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a79bec0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a7bbed0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a7dbee0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a7fbef0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a81bf00 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a83bf10 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a85bf20 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a87bf30 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a89bf40 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a8bbf50 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a8dbf60 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a8fbf70 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a91bf80 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a93bf90 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a95bfa0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a97bfb0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a99bfc0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a9bbfd0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a9dbfe0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a9fbff0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0aa1c000 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0aa3c010 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0aa5c020 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0aa7c030 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0aa9c040 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0aabc050 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0aadc060 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0aafc070 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ab1c080 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ab3c090 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ab5c0a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ab7c0b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ab9c0c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0abbc0d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0abdc0e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0abfc0f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ac1c100 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ac3c110 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ac5c120 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ac7c130 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ac9c140 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0acbc150 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0acdc160 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0acfc170 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ad1c180 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ad3c190 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ad5c1a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ad7c1b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ad9c1c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0adbc1d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0addc1e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0adfc1f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ae1c200 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ae3c210 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ae5c220 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ae7c230 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ae9c240 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0aebc250 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0aedc260 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0aefc270 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0af1c280 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0af3c290 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0af5c2a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0af7c2b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0af9c2c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0afbc2d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0afdc2e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0affc2f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b01c300 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b03c310 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b05c320 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b07c330 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b09c340 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b0bc350 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b0dc360 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b0fc370 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b11c380 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b13c390 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b15c3a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b17c3b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b19c3c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b1bc3d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b1dc3e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b1fc3f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b21c400 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b23c410 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b25c420 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b27c430 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b29c440 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b2bc450 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b2dc460 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b2fc470 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b31c480 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b33c490 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b35c4a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b37c4b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b39c4c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b3bc4d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b3dc4e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b3fc4f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b41c500 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b43c510 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b45c520 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b47c530 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b49c540 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b4bc550 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b4dc560 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b4fc570 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b51c580 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b53c590 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b55c5a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b57c5b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b59c5c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b5bc5d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b5dc5e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b5fc5f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b61c600 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b63c610 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b65c620 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b67c630 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b69c640 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b6bc650 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b6dc660 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b6fc670 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b71c680 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b73c690 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b75c6a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b77c6b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b79c6c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b7bc6d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b7dc6e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b7fc6f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b81c700 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b83c710 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b85c720 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b87c730 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b89c740 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b8bc750 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b8dc760 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b8fc770 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b91c780 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b93c790 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b95c7a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b97c7b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b99c7c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b9bc7d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b9dc7e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b9fc7f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ba1c800 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ba3c810 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ba5c820 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ba7c830 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ba9c840 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0babc850 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0badc860 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bafc870 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bb1c880 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bb3c890 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bb5c8a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bb7c8b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bb9c8c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bbbc8d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bbdc8e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bbfc8f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bc1c900 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bc3c910 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bc5c920 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bc7c930 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bc9c940 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bcbc950 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bcdc960 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bcfc970 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bd1c980 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bd3c990 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bd5c9a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bd7c9b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bd9c9c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bdbc9d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bddc9e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bdfc9f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0be1ca00 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0be3ca10 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0be5ca20 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0be7ca30 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0be9ca40 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bebca50 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bedca60 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0befca70 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bf1ca80 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bf3ca90 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bf5caa0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bf7cab0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bf9cac0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bfbcad0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bfdcae0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bffcaf0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c01cb00 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c03cb10 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c05cb20 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c07cb30 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c09cb40 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c0bcb50 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c0dcb60 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c0fcb70 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c11cb80 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c13cb90 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c15cba0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c17cbb0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c19cbc0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c1bcbd0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c1dcbe0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c1fcbf0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c21cc00 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c23cc10 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c25cc20 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c27cc30 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c29cc40 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c2bcc50 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c2dcc60 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c2fcc70 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c31cc80 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c33cc90 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c35cca0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c37ccb0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c39ccc0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c3bccd0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c3dcce0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c3fccf0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c41cd00 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c43cd10 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c45cd20 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c47cd30 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c49cd40 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c4bcd50 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c4dcd60 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c4fcd70 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c51cd80 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c53cd90 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c55cda0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c57cdb0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c59cdc0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c5bcdd0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c5dcde0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c5fcdf0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c61ce00 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c63ce10 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c65ce20 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c67ce30 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c69ce40 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c6bce50 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c6dce60 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c6fce70 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c71ce80 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c73ce90 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c75cea0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c77ceb0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c79cec0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c7bced0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c7dcee0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c7fcef0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c81cf00 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c83cf10 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c85cf20 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c87cf30 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c89cf40 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:41\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c8bcf50 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c8dcf60 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c8fcf70 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c91cf80 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c93cf90 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c95cfa0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c97cfb0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c99cfc0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c9bcfd0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c9dcfe0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c9fcff0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ca1d000 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ca3d010 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ca5d020 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ca7d030 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ca9d040 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0cabd050 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0cadd060 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0cafd070 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0cb1d080 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0cb3d090 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0cb5d0a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0cb7d0b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0cb9d0c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0cbbd0d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0cbdd0e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0cbfd0f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0cc1d100 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0cc3d110 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0cc5d120 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0cc7d130 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0cc9d140 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ccbd150 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ccdd160 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ccfd170 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0cd1d180 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0cd3d190 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb087c1430 for tiles in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m211\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Computing short-range forces (using 8 tiles and 32 / 32 cores) done.\n",
"[02:24:42\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Acceleration loop, direction 0...\n",
"[02:24:42\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Acceleration loop, direction 0 done.\n",
"[02:24:42\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Kick loop, direction 0...\n",
"[02:24:42\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Kick loop, direction 0 done.\n",
"[02:24:42\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Acceleration loop, direction 1...\n",
"[02:24:42\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Acceleration loop, direction 1 done.\n",
"[02:24:42\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Kick loop, direction 1...\n",
"[02:24:42\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Kick loop, direction 1 done.\n",
"[02:24:42\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Acceleration loop, direction 2...\n",
"[02:24:42\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Acceleration loop, direction 2 done.\n",
"[02:24:42\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Kick loop, direction 2...\n",
"[02:24:42\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Kick loop, direction 2 done.\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08c1b190 for g_pad in \u001b[38;5;227mpmcola.c\u001b[0;36m:\u001b[38;5;192mkick_pm_cola\u001b[0;36m:\u001b[0;32m592\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08d1b1a0 for pp in \u001b[38;5;227mpmcola.c\u001b[0;36m:\u001b[38;5;192mkick_pm_cola\u001b[0;36m:\u001b[0;32m598\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]====|Kicking particles (using 32 cores) done.\n",
"[02:24:42\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]====|Drifting particles (using 32 cores)...\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mndrift=1\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mnkick=1\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246maiDrift=0.097500\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246maKick=0.121250\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mafDrift=0.145000\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246malpha_p=2.062962\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246malpha_lpt_1=0.000000\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246malpha_lpt_2=0.000000\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246malpha_ext=0.000000\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Drift loop, direction 0...\n",
"[02:24:42\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Drift loop, direction 0 done.\n",
"[02:24:42\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Drift loop, direction 1...\n",
"[02:24:42\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Drift loop, direction 1 done.\n",
"[02:24:42\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Drift loop, direction 2...\n",
"[02:24:42\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Drift loop, direction 2 done.\n",
"[02:24:42\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]====|Drifting particles (using 32 cores) done.\n",
"[02:24:42\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]==|ModuleP3M: End P3M step 2/20, time_kick:0.121250, time_drift=0.145000.\n",
"[02:24:42\u001b[00m|\u001b[38;5;159mTIMER \u001b[00m]==|Step 2/20: Density: 1.446 CPU - 0.052 wallclock seconds used.\n",
"[02:24:42\u001b[00m|\u001b[38;5;159mTIMER \u001b[00m]==|Step 2/20: Potential: 0.923 CPU - 0.032 wallclock seconds used.\n",
"[02:24:42\u001b[00m|\u001b[38;5;159mTIMER \u001b[00m]==|Step 2/20: Accelerations (long-range): 1.220 CPU - 0.044 wallclock seconds used.\n",
"[02:24:42\u001b[00m|\u001b[38;5;159mTIMER \u001b[00m]==|Step 2/20: Accelerations (short-range): 2.472 CPU - 0.132 wallclock seconds used.\n",
"[02:24:42\u001b[00m|\u001b[38;5;159mTIMER \u001b[00m]==|Step 2/20: Kick: 0.957 CPU - 0.032 wallclock seconds used.\n",
"[02:24:42\u001b[00m|\u001b[38;5;159mTIMER \u001b[00m]==|Step 2/20: Drift: 1.507 CPU - 0.050 wallclock seconds used.\n",
"[02:24:42\u001b[00m|\u001b[38;5;159mTIMER \u001b[00m]==|Step 2/20: Inputs: 0.000 CPU - 0.000 wallclock seconds used.\n",
"[02:24:42\u001b[00m|\u001b[38;5;159mTIMER \u001b[00m]==|Step 2/20: Diagnostic: 0.000 CPU - 0.000 wallclock seconds used.\n",
"[02:24:42\u001b[00m|\u001b[38;5;159mTIMER \u001b[00m]==|Step 2/20: Outputs: 0.000 CPU - 0.000 wallclock seconds used.\n",
"[02:24:42\u001b[00m|\u001b[38;5;159mTIMER \u001b[00m]==|Step 2/20: Total Evolution: 8.525 CPU - 0.342 wallclock seconds used.\n",
"[02:24:42\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]==|ModuleP3M: Begin P3M step 3/20, time_kick:0.121250, time_drift=0.145000.\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]====|\u001b[38;5;246mGiven the available memory, 4095 threads could be allocated and 32 threads will be used in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel\u001b[0;36m:\u001b[0;32m347\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]====|\u001b[38;5;246mGiven the available memory, 4095 threads could be allocated and 32 threads will be used in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m73\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]====|Getting density contrast (using 32 cores and 32 arrays, parallel routine 1)...\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]======|\u001b[38;5;246mPerforming CiC binning...\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 0...\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148950000b60 for threadedDensity[9] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148928000b60 for threadedDensity[20] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 9...\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 20...\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1488dc000b60 for threadedDensity[17] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1488f8000b60 for threadedDensity[19] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 17...\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 19...\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148990000b60 for threadedDensity[21] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148908000b60 for threadedDensity[8] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 21...\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 8...\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148980000b60 for threadedDensity[11] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1489b8000b60 for threadedDensity[4] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 11...\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 4...\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1488d0000b60 for threadedDensity[5] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148940000b60 for threadedDensity[27] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 5...\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 27...\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148960000b60 for threadedDensity[13] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1489a0000b60 for threadedDensity[3] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 13...\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 3...\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148988000b60 for threadedDensity[28] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148920000b60 for threadedDensity[12] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148978000b60 for threadedDensity[26] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 12...\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 26...\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 28...\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1488e8000b60 for threadedDensity[2] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148918000b60 for threadedDensity[15] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 2...\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 15...\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148968000b60 for threadedDensity[10] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148910000b60 for threadedDensity[23] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 10...\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 23...\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1489a8000b60 for threadedDensity[30] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148900000b60 for threadedDensity[16] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 30...\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 16...\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148948000b60 for threadedDensity[31] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1489b0000b60 for threadedDensity[1] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 31...\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 1...\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1488f0000b60 for threadedDensity[24] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148958000b60 for threadedDensity[22] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 24...\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 22...\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148930000b60 for threadedDensity[14] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148938000b60 for threadedDensity[18] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 14...\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 18...\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1488e0000b60 for threadedDensity[6] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1488d8000b60 for threadedDensity[29] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 6...\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 29...\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148998000b60 for threadedDensity[25] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148970000b60 for threadedDensity[7] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 25...\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 7...\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 7 done.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 25 done.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 20 done.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 9 done.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 21 done.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 8 done.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 11 done.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 4 done.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 17 done.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 19 done.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 0 done.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 28 done.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 5 done.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 27 done.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 13 done.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 3 done.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 26 done.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 12 done.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 23 done.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 10 done.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 15 done.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 2 done.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 24 done.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 22 done.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 31 done.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 1 done.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 30 done.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 16 done.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 14 done.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 18 done.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 6 done.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 29 done.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]======|\u001b[38;5;246mPerforming CiC done.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]======|\u001b[38;5;246mPerforming CiC reduction...\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x1489b0000b60 for threadedDensity[1] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x1488e8000b60 for threadedDensity[2] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x1489a0000b60 for threadedDensity[3] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x1489b8000b60 for threadedDensity[4] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x1488d0000b60 for threadedDensity[5] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x1488e0000b60 for threadedDensity[6] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148970000b60 for threadedDensity[7] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148908000b60 for threadedDensity[8] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148950000b60 for threadedDensity[9] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148968000b60 for threadedDensity[10] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148980000b60 for threadedDensity[11] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148920000b60 for threadedDensity[12] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148960000b60 for threadedDensity[13] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148930000b60 for threadedDensity[14] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148918000b60 for threadedDensity[15] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148900000b60 for threadedDensity[16] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x1488dc000b60 for threadedDensity[17] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148938000b60 for threadedDensity[18] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x1488f8000b60 for threadedDensity[19] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148928000b60 for threadedDensity[20] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148990000b60 for threadedDensity[21] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148958000b60 for threadedDensity[22] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148910000b60 for threadedDensity[23] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x1488f0000b60 for threadedDensity[24] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148998000b60 for threadedDensity[25] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148978000b60 for threadedDensity[26] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148940000b60 for threadedDensity[27] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148988000b60 for threadedDensity[28] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x1488d8000b60 for threadedDensity[29] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x1489a8000b60 for threadedDensity[30] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148948000b60 for threadedDensity[31] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]======|\u001b[38;5;246mPerforming CiC reduction done.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]====|Getting density contrast (using 32 cores and 32 arrays, parallel routine 1) done.\n",
"[02:24:42\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]====|Getting gravitational potential, periodic boundary conditions (using 32 cores)...\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated memory (1081344 bytes) at 0x55cb08c1b190 for AUX in \u001b[38;5;227mpoisson_solvers.c\u001b[0;36m:\u001b[38;5;192msolve_poisson_DFT\u001b[0;36m:\u001b[0;32m106\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08c1b190 for AUX in \u001b[38;5;227mpoisson_solvers.c\u001b[0;36m:\u001b[38;5;192msolve_poisson_DFT\u001b[0;36m:\u001b[0;32m116\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]====|Getting gravitational potential, periodic boundary conditions (using 32 cores) done.\n",
"[02:24:42\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]====|Kicking particles (using 32 cores)...\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mnkick=2\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mndrift=2\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246maiKick=0.121250\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246maDrift=0.145000\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mafKick=0.168750\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mbeta_delta=-0.104362\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mbeta_lpt_1=0.000000\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mbeta_lpt_2=0.000000\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mbeta_ext=0.000000\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated memory (1048576 bytes) at 0x55cb08c1b190 for g_pad in \u001b[38;5;227mpmcola.c\u001b[0;36m:\u001b[38;5;192mkick_pm_cola\u001b[0;36m:\u001b[0;32m478\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated memory (393216 bytes) at 0x55cb08d1b1a0 for pp in \u001b[38;5;227mpmcola.c\u001b[0;36m:\u001b[38;5;192mkick_pm_cola\u001b[0;36m:\u001b[0;32m554\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Computing short-range forces (using 8 tiles and 32 / 32 cores)...\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (8192 bytes) at 0x55cb089067c0 for tiles in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m57\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb08635220 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb08d7b1b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb08d9b1c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb08dbb1d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb08ddb1e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb08dfb1f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb08e1b200 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb08e3b210 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb08e5b220 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb08e7b230 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb08e9b240 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb08ebb250 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb08edb260 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb08efb270 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb08f1b280 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb08f3b290 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb08f5b2a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb08f7b2b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb08f9b2c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb08fbb2d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb08fdb2e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb08ffb2f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0901b300 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0903b310 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0905b320 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0907b330 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0909b340 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb090bb350 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb090db360 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb090fb370 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0911b380 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0913b390 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0915b3a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0917b3b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0919b3c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb091bb3d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb091db3e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb091fb3f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0921b400 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0923b410 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0925b420 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0927b430 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0929b440 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb092bb450 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb092db460 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb092fb470 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0931b480 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0933b490 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0935b4a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0937b4b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0939b4c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb093bb4d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb093db4e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb093fb4f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0941b500 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0943b510 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0945b520 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0947b530 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0949b540 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb094bb550 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb094db560 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb094fb570 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0951b580 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0953b590 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0955b5a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0957b5b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0959b5c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb095bb5d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb095db5e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb095fb5f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0961b600 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0963b610 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0965b620 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0967b630 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0969b640 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb096bb650 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb096db660 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb096fb670 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0971b680 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0973b690 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0975b6a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0977b6b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0979b6c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb097bb6d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb097db6e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb097fb6f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0981b700 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0983b710 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0985b720 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0987b730 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0989b740 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb098bb750 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb098db760 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb098fb770 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0991b780 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0993b790 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0995b7a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0997b7b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0999b7c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb099bb7d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb099db7e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb099fb7f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09a1b800 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09a3b810 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09a5b820 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09a7b830 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09a9b840 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09abb850 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09adb860 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09afb870 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09b1b880 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09b3b890 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09b5b8a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09b7b8b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09b9b8c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09bbb8d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09bdb8e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09bfb8f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09c1b900 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09c3b910 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09c5b920 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09c7b930 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09c9b940 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09cbb950 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09cdb960 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09cfb970 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09d1b980 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09d3b990 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09d5b9a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09d7b9b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09d9b9c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09dbb9d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09ddb9e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09dfb9f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09e1ba00 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09e3ba10 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09e5ba20 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09e7ba30 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09e9ba40 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09ebba50 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09edba60 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09efba70 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09f1ba80 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09f3ba90 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09f5baa0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09f7bab0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09f9bac0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09fbbad0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09fdbae0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09ffbaf0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a01bb00 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a03bb10 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a05bb20 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a07bb30 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a09bb40 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a0bbb50 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a0dbb60 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a0fbb70 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a11bb80 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a13bb90 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a15bba0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a17bbb0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a19bbc0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a1bbbd0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a1dbbe0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a1fbbf0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a21bc00 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a23bc10 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a25bc20 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a27bc30 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a29bc40 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a2bbc50 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a2dbc60 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a2fbc70 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a31bc80 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a33bc90 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a35bca0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a37bcb0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a39bcc0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a3bbcd0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a3dbce0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a3fbcf0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a41bd00 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a43bd10 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a45bd20 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a47bd30 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a49bd40 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a4bbd50 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a4dbd60 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a4fbd70 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a51bd80 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a53bd90 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a55bda0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a57bdb0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a59bdc0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a5bbdd0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a5dbde0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a5fbdf0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a61be00 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a63be10 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a65be20 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a67be30 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a69be40 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a6bbe50 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a6dbe60 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a6fbe70 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a71be80 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a73be90 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a75bea0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a77beb0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a79bec0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a7bbed0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a7dbee0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a7fbef0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a81bf00 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a83bf10 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a85bf20 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a87bf30 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a89bf40 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a8bbf50 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a8dbf60 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a8fbf70 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a91bf80 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a93bf90 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a95bfa0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a97bfb0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a99bfc0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a9bbfd0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a9dbfe0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a9fbff0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0aa1c000 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0aa3c010 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0aa5c020 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0aa7c030 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0aa9c040 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0aabc050 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0aadc060 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0aafc070 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ab1c080 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ab3c090 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ab5c0a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ab7c0b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ab9c0c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0abbc0d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0abdc0e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0abfc0f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ac1c100 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ac3c110 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ac5c120 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ac7c130 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ac9c140 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0acbc150 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0acdc160 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0acfc170 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ad1c180 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ad3c190 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ad5c1a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ad7c1b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ad9c1c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0adbc1d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0addc1e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0adfc1f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ae1c200 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ae3c210 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ae5c220 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ae7c230 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ae9c240 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0aebc250 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0aedc260 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0aefc270 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0af1c280 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0af3c290 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0af5c2a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0af7c2b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0af9c2c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0afbc2d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0afdc2e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0affc2f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b01c300 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b03c310 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b05c320 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b07c330 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b09c340 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b0bc350 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b0dc360 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b0fc370 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b11c380 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b13c390 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b15c3a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b17c3b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b19c3c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b1bc3d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b1dc3e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b1fc3f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b21c400 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b23c410 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b25c420 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b27c430 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b29c440 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b2bc450 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b2dc460 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b2fc470 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b31c480 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b33c490 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b35c4a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b37c4b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b39c4c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b3bc4d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b3dc4e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b3fc4f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b41c500 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b43c510 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b45c520 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b47c530 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b49c540 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b4bc550 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b4dc560 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b4fc570 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b51c580 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b53c590 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b55c5a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b57c5b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b59c5c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b5bc5d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b5dc5e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b5fc5f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b61c600 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b63c610 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b65c620 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b67c630 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b69c640 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b6bc650 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b6dc660 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b6fc670 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b71c680 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b73c690 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b75c6a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b77c6b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b79c6c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b7bc6d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b7dc6e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b7fc6f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b81c700 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b83c710 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b85c720 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b87c730 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b89c740 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b8bc750 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b8dc760 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b8fc770 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b91c780 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b93c790 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b95c7a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b97c7b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b99c7c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b9bc7d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b9dc7e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b9fc7f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ba1c800 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ba3c810 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ba5c820 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ba7c830 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ba9c840 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0babc850 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0badc860 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bafc870 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bb1c880 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bb3c890 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bb5c8a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bb7c8b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bb9c8c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bbbc8d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bbdc8e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bbfc8f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bc1c900 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bc3c910 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bc5c920 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bc7c930 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bc9c940 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bcbc950 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bcdc960 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bcfc970 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bd1c980 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bd3c990 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bd5c9a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bd7c9b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bd9c9c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bdbc9d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bddc9e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bdfc9f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0be1ca00 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0be3ca10 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0be5ca20 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0be7ca30 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0be9ca40 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bebca50 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bedca60 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0befca70 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bf1ca80 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bf3ca90 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bf5caa0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bf7cab0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bf9cac0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bfbcad0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bfdcae0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bffcaf0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c01cb00 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c03cb10 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c05cb20 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c07cb30 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c09cb40 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c0bcb50 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c0dcb60 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c0fcb70 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c11cb80 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c13cb90 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c15cba0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c17cbb0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c19cbc0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c1bcbd0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c1dcbe0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c1fcbf0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c21cc00 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c23cc10 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c25cc20 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c27cc30 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c29cc40 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c2bcc50 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c2dcc60 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c2fcc70 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c31cc80 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c33cc90 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c35cca0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c37ccb0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c39ccc0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c3bccd0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c3dcce0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c3fccf0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c41cd00 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c43cd10 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c45cd20 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c47cd30 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c49cd40 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c4bcd50 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c4dcd60 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c4fcd70 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c51cd80 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c53cd90 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c55cda0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c57cdb0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c59cdc0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c5bcdd0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c5dcde0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c5fcdf0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c61ce00 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c63ce10 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c65ce20 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c67ce30 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c69ce40 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c6bce50 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c6dce60 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c6fce70 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c71ce80 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c73ce90 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c75cea0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c77ceb0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c79cec0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c7bced0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c7dcee0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c7fcef0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c81cf00 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c83cf10 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c85cf20 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c87cf30 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c89cf40 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c8bcf50 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c8dcf60 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c8fcf70 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c91cf80 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c93cf90 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c95cfa0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c97cfb0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c99cfc0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c9bcfd0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c9dcfe0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c9fcff0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ca1d000 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ca3d010 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ca5d020 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ca7d030 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ca9d040 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0cabd050 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0cadd060 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0cafd070 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0cb1d080 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0cb3d090 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0cb5d0a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0cb7d0b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0cb9d0c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0cbbd0d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0cbdd0e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0cbfd0f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0cc1d100 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0cc3d110 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0cc5d120 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0cc7d130 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0cc9d140 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ccbd150 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ccdd160 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ccfd170 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0cd1d180 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0cd3d190 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08635220 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08d7b1b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08d9b1c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08dbb1d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08ddb1e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08dfb1f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08e1b200 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08e3b210 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08e5b220 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08e7b230 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08e9b240 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08ebb250 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08edb260 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08efb270 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08f1b280 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08f3b290 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08f5b2a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08f7b2b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08f9b2c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08fbb2d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08fdb2e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08ffb2f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0901b300 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0903b310 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0905b320 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0907b330 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0909b340 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb090bb350 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb090db360 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb090fb370 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0911b380 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0913b390 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0915b3a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0917b3b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0919b3c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb091bb3d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb091db3e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb091fb3f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0921b400 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0923b410 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0925b420 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0927b430 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0929b440 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb092bb450 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb092db460 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb092fb470 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0931b480 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0933b490 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0935b4a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0937b4b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0939b4c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb093bb4d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb093db4e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb093fb4f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0941b500 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0943b510 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0945b520 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0947b530 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0949b540 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb094bb550 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb094db560 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb094fb570 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0951b580 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0953b590 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0955b5a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0957b5b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0959b5c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb095bb5d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb095db5e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb095fb5f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0961b600 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0963b610 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0965b620 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0967b630 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0969b640 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb096bb650 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb096db660 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb096fb670 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0971b680 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0973b690 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0975b6a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0977b6b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0979b6c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb097bb6d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb097db6e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb097fb6f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0981b700 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0983b710 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0985b720 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0987b730 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0989b740 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb098bb750 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb098db760 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb098fb770 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0991b780 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0993b790 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0995b7a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0997b7b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0999b7c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb099bb7d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb099db7e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb099fb7f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09a1b800 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09a3b810 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09a5b820 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09a7b830 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09a9b840 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09abb850 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09adb860 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09afb870 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09b1b880 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09b3b890 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09b5b8a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09b7b8b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09b9b8c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09bbb8d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09bdb8e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09bfb8f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09c1b900 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09c3b910 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09c5b920 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09c7b930 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09c9b940 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09cbb950 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09cdb960 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09cfb970 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09d1b980 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09d3b990 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09d5b9a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09d7b9b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09d9b9c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09dbb9d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09ddb9e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09dfb9f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09e1ba00 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09e3ba10 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09e5ba20 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09e7ba30 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09e9ba40 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09ebba50 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09edba60 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09efba70 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09f1ba80 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09f3ba90 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09f5baa0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09f7bab0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09f9bac0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09fbbad0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09fdbae0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09ffbaf0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a01bb00 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a03bb10 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a05bb20 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a07bb30 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a09bb40 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a0bbb50 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a0dbb60 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a0fbb70 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a11bb80 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a13bb90 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a15bba0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a17bbb0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a19bbc0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a1bbbd0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a1dbbe0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a1fbbf0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a21bc00 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a23bc10 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a25bc20 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a27bc30 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a29bc40 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a2bbc50 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a2dbc60 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a2fbc70 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a31bc80 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a33bc90 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a35bca0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a37bcb0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a39bcc0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a3bbcd0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a3dbce0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a3fbcf0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a41bd00 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a43bd10 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a45bd20 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a47bd30 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a49bd40 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a4bbd50 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a4dbd60 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a4fbd70 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a51bd80 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a53bd90 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a55bda0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a57bdb0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a59bdc0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a5bbdd0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a5dbde0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a5fbdf0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a61be00 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a63be10 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a65be20 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a67be30 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a69be40 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a6bbe50 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a6dbe60 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a6fbe70 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a71be80 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a73be90 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a75bea0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a77beb0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a79bec0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a7bbed0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a7dbee0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a7fbef0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a81bf00 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a83bf10 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a85bf20 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a87bf30 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a89bf40 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a8bbf50 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a8dbf60 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a8fbf70 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a91bf80 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a93bf90 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a95bfa0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a97bfb0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a99bfc0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a9bbfd0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a9dbfe0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a9fbff0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0aa1c000 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0aa3c010 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0aa5c020 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0aa7c030 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0aa9c040 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0aabc050 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0aadc060 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0aafc070 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ab1c080 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ab3c090 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ab5c0a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ab7c0b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ab9c0c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0abbc0d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0abdc0e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0abfc0f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ac1c100 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ac3c110 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ac5c120 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ac7c130 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ac9c140 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0acbc150 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0acdc160 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0acfc170 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ad1c180 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ad3c190 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ad5c1a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ad7c1b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ad9c1c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0adbc1d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0addc1e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0adfc1f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ae1c200 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ae3c210 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ae5c220 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ae7c230 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ae9c240 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0aebc250 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0aedc260 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0aefc270 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0af1c280 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0af3c290 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0af5c2a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0af7c2b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0af9c2c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0afbc2d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0afdc2e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0affc2f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b01c300 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b03c310 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b05c320 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b07c330 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b09c340 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b0bc350 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b0dc360 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b0fc370 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b11c380 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b13c390 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b15c3a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b17c3b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b19c3c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b1bc3d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b1dc3e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b1fc3f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b21c400 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b23c410 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b25c420 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b27c430 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b29c440 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b2bc450 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b2dc460 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b2fc470 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b31c480 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b33c490 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b35c4a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b37c4b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b39c4c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b3bc4d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b3dc4e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b3fc4f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b41c500 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b43c510 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b45c520 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b47c530 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b49c540 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b4bc550 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b4dc560 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b4fc570 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b51c580 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b53c590 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b55c5a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b57c5b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b59c5c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b5bc5d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b5dc5e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b5fc5f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b61c600 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b63c610 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b65c620 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b67c630 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b69c640 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b6bc650 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b6dc660 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b6fc670 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b71c680 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b73c690 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b75c6a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b77c6b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b79c6c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b7bc6d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b7dc6e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b7fc6f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b81c700 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b83c710 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b85c720 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b87c730 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b89c740 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b8bc750 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b8dc760 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b8fc770 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b91c780 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b93c790 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b95c7a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b97c7b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b99c7c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b9bc7d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b9dc7e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b9fc7f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ba1c800 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ba3c810 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ba5c820 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ba7c830 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ba9c840 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0babc850 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0badc860 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bafc870 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bb1c880 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bb3c890 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bb5c8a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bb7c8b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bb9c8c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bbbc8d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bbdc8e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bbfc8f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bc1c900 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bc3c910 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bc5c920 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bc7c930 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bc9c940 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bcbc950 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bcdc960 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bcfc970 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bd1c980 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bd3c990 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bd5c9a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bd7c9b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bd9c9c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bdbc9d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bddc9e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bdfc9f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0be1ca00 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0be3ca10 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0be5ca20 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0be7ca30 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0be9ca40 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bebca50 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bedca60 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0befca70 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bf1ca80 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bf3ca90 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bf5caa0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bf7cab0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bf9cac0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bfbcad0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bfdcae0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bffcaf0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c01cb00 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c03cb10 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c05cb20 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c07cb30 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c09cb40 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c0bcb50 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c0dcb60 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c0fcb70 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c11cb80 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c13cb90 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c15cba0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c17cbb0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c19cbc0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c1bcbd0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c1dcbe0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c1fcbf0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c21cc00 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c23cc10 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c25cc20 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c27cc30 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c29cc40 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c2bcc50 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c2dcc60 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c2fcc70 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c31cc80 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c33cc90 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c35cca0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c37ccb0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c39ccc0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c3bccd0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c3dcce0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c3fccf0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c41cd00 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c43cd10 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c45cd20 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c47cd30 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c49cd40 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c4bcd50 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c4dcd60 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c4fcd70 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c51cd80 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c53cd90 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c55cda0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c57cdb0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c59cdc0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c5bcdd0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c5dcde0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c5fcdf0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c61ce00 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c63ce10 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c65ce20 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c67ce30 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c69ce40 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c6bce50 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c6dce60 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c6fce70 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c71ce80 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c73ce90 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c75cea0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c77ceb0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c79cec0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c7bced0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c7dcee0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c7fcef0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c81cf00 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c83cf10 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c85cf20 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c87cf30 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c89cf40 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c8bcf50 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c8dcf60 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c8fcf70 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c91cf80 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c93cf90 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c95cfa0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c97cfb0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c99cfc0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c9bcfd0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c9dcfe0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c9fcff0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ca1d000 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ca3d010 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ca5d020 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ca7d030 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ca9d040 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0cabd050 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0cadd060 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0cafd070 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0cb1d080 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0cb3d090 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0cb5d0a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0cb7d0b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0cb9d0c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0cbbd0d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0cbdd0e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0cbfd0f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0cc1d100 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0cc3d110 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0cc5d120 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0cc7d130 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0cc9d140 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ccbd150 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ccdd160 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ccfd170 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0cd1d180 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0cd3d190 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb089067c0 for tiles in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m211\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Computing short-range forces (using 8 tiles and 32 / 32 cores) done.\n",
"[02:24:42\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Acceleration loop, direction 0...\n",
"[02:24:42\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Acceleration loop, direction 0 done.\n",
"[02:24:42\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Kick loop, direction 0...\n",
"[02:24:42\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Kick loop, direction 0 done.\n",
"[02:24:42\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Acceleration loop, direction 1...\n",
"[02:24:42\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Acceleration loop, direction 1 done.\n",
"[02:24:42\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Kick loop, direction 1...\n",
"[02:24:42\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Kick loop, direction 1 done.\n",
"[02:24:42\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Acceleration loop, direction 2...\n",
"[02:24:42\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Acceleration loop, direction 2 done.\n",
"[02:24:42\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Kick loop, direction 2...\n",
"[02:24:42\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Kick loop, direction 2 done.\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08c1b190 for g_pad in \u001b[38;5;227mpmcola.c\u001b[0;36m:\u001b[38;5;192mkick_pm_cola\u001b[0;36m:\u001b[0;32m592\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08d1b1a0 for pp in \u001b[38;5;227mpmcola.c\u001b[0;36m:\u001b[38;5;192mkick_pm_cola\u001b[0;36m:\u001b[0;32m598\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]====|Kicking particles (using 32 cores) done.\n",
"[02:24:42\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]====|Drifting particles (using 32 cores)...\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mndrift=2\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mnkick=2\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246maiDrift=0.145000\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246maKick=0.168750\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mafDrift=0.192500\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246malpha_p=1.237460\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246malpha_lpt_1=0.000000\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246malpha_lpt_2=0.000000\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246malpha_ext=0.000000\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Drift loop, direction 0...\n",
"[02:24:42\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Drift loop, direction 0 done.\n",
"[02:24:42\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Drift loop, direction 1...\n",
"[02:24:42\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Drift loop, direction 1 done.\n",
"[02:24:42\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Drift loop, direction 2...\n",
"[02:24:42\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Drift loop, direction 2 done.\n",
"[02:24:42\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]====|Drifting particles (using 32 cores) done.\n",
"[02:24:42\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]==|ModuleP3M: End P3M step 3/20, time_kick:0.168750, time_drift=0.192500.\n",
"[02:24:42\u001b[00m|\u001b[38;5;159mTIMER \u001b[00m]==|Step 3/20: Density: 0.714 CPU - 0.026 wallclock seconds used.\n",
"[02:24:42\u001b[00m|\u001b[38;5;159mTIMER \u001b[00m]==|Step 3/20: Potential: 0.975 CPU - 0.038 wallclock seconds used.\n",
"[02:24:42\u001b[00m|\u001b[38;5;159mTIMER \u001b[00m]==|Step 3/20: Accelerations (long-range): 1.036 CPU - 0.038 wallclock seconds used.\n",
"[02:24:42\u001b[00m|\u001b[38;5;159mTIMER \u001b[00m]==|Step 3/20: Accelerations (short-range): 2.486 CPU - 0.123 wallclock seconds used.\n",
"[02:24:42\u001b[00m|\u001b[38;5;159mTIMER \u001b[00m]==|Step 3/20: Kick: 1.137 CPU - 0.039 wallclock seconds used.\n",
"[02:24:42\u001b[00m|\u001b[38;5;159mTIMER \u001b[00m]==|Step 3/20: Drift: 2.207 CPU - 0.074 wallclock seconds used.\n",
"[02:24:42\u001b[00m|\u001b[38;5;159mTIMER \u001b[00m]==|Step 3/20: Inputs: 0.000 CPU - 0.000 wallclock seconds used.\n",
"[02:24:42\u001b[00m|\u001b[38;5;159mTIMER \u001b[00m]==|Step 3/20: Diagnostic: 0.000 CPU - 0.000 wallclock seconds used.\n",
"[02:24:42\u001b[00m|\u001b[38;5;159mTIMER \u001b[00m]==|Step 3/20: Outputs: 0.000 CPU - 0.000 wallclock seconds used.\n",
"[02:24:42\u001b[00m|\u001b[38;5;159mTIMER \u001b[00m]==|Step 3/20: Total Evolution: 8.554 CPU - 0.337 wallclock seconds used.\n",
"[02:24:42\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]==|ModuleP3M: Begin P3M step 4/20, time_kick:0.168750, time_drift=0.192500.\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]====|\u001b[38;5;246mGiven the available memory, 4095 threads could be allocated and 32 threads will be used in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel\u001b[0;36m:\u001b[0;32m347\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]====|\u001b[38;5;246mGiven the available memory, 4095 threads could be allocated and 32 threads will be used in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m73\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]====|Getting density contrast (using 32 cores and 32 arrays, parallel routine 1)...\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]======|\u001b[38;5;246mPerforming CiC binning...\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 0...\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148988000b60 for threadedDensity[28] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148950000b60 for threadedDensity[9] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148928000b60 for threadedDensity[20] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 9...\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 20...\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1488dc000b60 for threadedDensity[17] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1488f8000b60 for threadedDensity[19] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 17...\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 19...\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148980000b60 for threadedDensity[11] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1489b8000b60 for threadedDensity[4] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 11...\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 4...\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148990000b60 for threadedDensity[21] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148908000b60 for threadedDensity[8] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 21...\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 8...\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1489a0000b60 for threadedDensity[3] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148960000b60 for threadedDensity[13] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 3...\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 13...\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1488d0000b60 for threadedDensity[5] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148940000b60 for threadedDensity[27] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 5...\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 27...\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 28...\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148920000b60 for threadedDensity[12] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148978000b60 for threadedDensity[26] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 12...\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 26...\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148968000b60 for threadedDensity[10] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1488e8000b60 for threadedDensity[2] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148918000b60 for threadedDensity[15] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 2...\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 15...\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1488f0000b60 for threadedDensity[24] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148958000b60 for threadedDensity[22] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 24...\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 22...\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 10...\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1489b0000b60 for threadedDensity[1] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 1...\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148948000b60 for threadedDensity[31] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148930000b60 for threadedDensity[14] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148938000b60 for threadedDensity[18] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 14...\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 18...\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1489a8000b60 for threadedDensity[30] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 31...\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 30...\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1488d8000b60 for threadedDensity[29] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1488e0000b60 for threadedDensity[6] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 29...\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 6...\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148998000b60 for threadedDensity[25] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148970000b60 for threadedDensity[7] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 25...\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 7...\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148910000b60 for threadedDensity[23] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 23...\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148900000b60 for threadedDensity[16] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 16...\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 6 done.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 16 done.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 8 done.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 21 done.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 20 done.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 9 done.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 4 done.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 11 done.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 17 done.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 19 done.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 5 done.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 27 done.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 28 done.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 13 done.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 3 done.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 12 done.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 26 done.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 2 done.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 15 done.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 10 done.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 0 done.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 18 done.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 14 done.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 24 done.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 22 done.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 1 done.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 31 done.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 23 done.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 30 done.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 7 done.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 25 done.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 29 done.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]======|\u001b[38;5;246mPerforming CiC done.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]======|\u001b[38;5;246mPerforming CiC reduction...\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x1489b0000b60 for threadedDensity[1] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x1488e8000b60 for threadedDensity[2] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x1489a0000b60 for threadedDensity[3] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x1489b8000b60 for threadedDensity[4] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x1488d0000b60 for threadedDensity[5] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x1488e0000b60 for threadedDensity[6] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148970000b60 for threadedDensity[7] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148908000b60 for threadedDensity[8] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148950000b60 for threadedDensity[9] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148968000b60 for threadedDensity[10] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148980000b60 for threadedDensity[11] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148920000b60 for threadedDensity[12] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148960000b60 for threadedDensity[13] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148930000b60 for threadedDensity[14] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148918000b60 for threadedDensity[15] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148900000b60 for threadedDensity[16] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x1488dc000b60 for threadedDensity[17] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148938000b60 for threadedDensity[18] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x1488f8000b60 for threadedDensity[19] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148928000b60 for threadedDensity[20] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148990000b60 for threadedDensity[21] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148958000b60 for threadedDensity[22] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148910000b60 for threadedDensity[23] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x1488f0000b60 for threadedDensity[24] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148998000b60 for threadedDensity[25] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148978000b60 for threadedDensity[26] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148940000b60 for threadedDensity[27] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148988000b60 for threadedDensity[28] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x1488d8000b60 for threadedDensity[29] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x1489a8000b60 for threadedDensity[30] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148948000b60 for threadedDensity[31] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]======|\u001b[38;5;246mPerforming CiC reduction done.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]====|Getting density contrast (using 32 cores and 32 arrays, parallel routine 1) done.\n",
"[02:24:42\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]====|Getting gravitational potential, periodic boundary conditions (using 32 cores)...\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated memory (1081344 bytes) at 0x55cb08c1b190 for AUX in \u001b[38;5;227mpoisson_solvers.c\u001b[0;36m:\u001b[38;5;192msolve_poisson_DFT\u001b[0;36m:\u001b[0;32m106\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08c1b190 for AUX in \u001b[38;5;227mpoisson_solvers.c\u001b[0;36m:\u001b[38;5;192msolve_poisson_DFT\u001b[0;36m:\u001b[0;32m116\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]====|Getting gravitational potential, periodic boundary conditions (using 32 cores) done.\n",
"[02:24:42\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]====|Kicking particles (using 32 cores)...\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mnkick=3\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mndrift=3\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246maiKick=0.168750\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246maDrift=0.192500\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mafKick=0.216250\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mbeta_delta=-0.090038\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mbeta_lpt_1=0.000000\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mbeta_lpt_2=0.000000\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mbeta_ext=0.000000\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated memory (1048576 bytes) at 0x55cb08c1b190 for g_pad in \u001b[38;5;227mpmcola.c\u001b[0;36m:\u001b[38;5;192mkick_pm_cola\u001b[0;36m:\u001b[0;32m478\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated memory (393216 bytes) at 0x55cb08d1b1a0 for pp in \u001b[38;5;227mpmcola.c\u001b[0;36m:\u001b[38;5;192mkick_pm_cola\u001b[0;36m:\u001b[0;32m554\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Computing short-range forces (using 8 tiles and 32 / 32 cores)...\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (8192 bytes) at 0x55cb087a8490 for tiles in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m57\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb08635220 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb08d7b1b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb08d9b1c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb08dbb1d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb08ddb1e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb08dfb1f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb08e1b200 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb08e3b210 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb08e5b220 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb08e7b230 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb08e9b240 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb08ebb250 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb08edb260 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb08efb270 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb08f1b280 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb08f3b290 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb08f5b2a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb08f7b2b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb08f9b2c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb08fbb2d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb08fdb2e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb08ffb2f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0901b300 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0903b310 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0905b320 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0907b330 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0909b340 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb090bb350 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb090db360 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb090fb370 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0911b380 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0913b390 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0915b3a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0917b3b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0919b3c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb091bb3d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb091db3e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb091fb3f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0921b400 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0923b410 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0925b420 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0927b430 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0929b440 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb092bb450 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb092db460 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb092fb470 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0931b480 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0933b490 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0935b4a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0937b4b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0939b4c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb093bb4d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb093db4e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb093fb4f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0941b500 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0943b510 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0945b520 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0947b530 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0949b540 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb094bb550 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb094db560 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb094fb570 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0951b580 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0953b590 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0955b5a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0957b5b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0959b5c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb095bb5d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb095db5e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb095fb5f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0961b600 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0963b610 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0965b620 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0967b630 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0969b640 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb096bb650 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb096db660 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb096fb670 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0971b680 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0973b690 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0975b6a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0977b6b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0979b6c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb097bb6d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb097db6e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb097fb6f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0981b700 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0983b710 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0985b720 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0987b730 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0989b740 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb098bb750 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb098db760 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb098fb770 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0991b780 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0993b790 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0995b7a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0997b7b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0999b7c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb099bb7d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb099db7e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb099fb7f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09a1b800 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09a3b810 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09a5b820 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09a7b830 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09a9b840 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09abb850 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09adb860 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09afb870 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09b1b880 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09b3b890 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09b5b8a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09b7b8b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09b9b8c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09bbb8d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09bdb8e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09bfb8f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09c1b900 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09c3b910 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09c5b920 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09c7b930 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09c9b940 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09cbb950 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09cdb960 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09cfb970 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09d1b980 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09d3b990 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09d5b9a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09d7b9b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09d9b9c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09dbb9d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09ddb9e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09dfb9f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09e1ba00 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09e3ba10 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09e5ba20 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09e7ba30 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09e9ba40 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09ebba50 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09edba60 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09efba70 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09f1ba80 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09f3ba90 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09f5baa0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09f7bab0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09f9bac0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09fbbad0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09fdbae0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09ffbaf0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a01bb00 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a03bb10 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a05bb20 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a07bb30 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a09bb40 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a0bbb50 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a0dbb60 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a0fbb70 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a11bb80 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a13bb90 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a15bba0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a17bbb0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a19bbc0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a1bbbd0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a1dbbe0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a1fbbf0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a21bc00 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a23bc10 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a25bc20 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a27bc30 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a29bc40 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a2bbc50 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a2dbc60 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a2fbc70 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a31bc80 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a33bc90 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a35bca0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a37bcb0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a39bcc0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a3bbcd0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a3dbce0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a3fbcf0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a41bd00 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a43bd10 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a45bd20 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a47bd30 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a49bd40 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a4bbd50 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a4dbd60 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a4fbd70 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a51bd80 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a53bd90 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a55bda0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a57bdb0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a59bdc0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a5bbdd0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a5dbde0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a5fbdf0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a61be00 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a63be10 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a65be20 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a67be30 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a69be40 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a6bbe50 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a6dbe60 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a6fbe70 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a71be80 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a73be90 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a75bea0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a77beb0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a79bec0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a7bbed0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a7dbee0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a7fbef0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a81bf00 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a83bf10 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a85bf20 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a87bf30 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a89bf40 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a8bbf50 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a8dbf60 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a8fbf70 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a91bf80 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a93bf90 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a95bfa0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a97bfb0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a99bfc0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a9bbfd0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a9dbfe0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a9fbff0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0aa1c000 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0aa3c010 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0aa5c020 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0aa7c030 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0aa9c040 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0aabc050 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0aadc060 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0aafc070 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ab1c080 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ab3c090 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ab5c0a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ab7c0b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ab9c0c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0abbc0d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0abdc0e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0abfc0f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ac1c100 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ac3c110 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ac5c120 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ac7c130 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ac9c140 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0acbc150 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0acdc160 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0acfc170 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ad1c180 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ad3c190 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ad5c1a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ad7c1b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ad9c1c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0adbc1d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0addc1e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0adfc1f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ae1c200 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ae3c210 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ae5c220 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ae7c230 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ae9c240 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0aebc250 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0aedc260 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0aefc270 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0af1c280 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0af3c290 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0af5c2a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0af7c2b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0af9c2c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0afbc2d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0afdc2e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0affc2f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b01c300 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b03c310 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b05c320 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b07c330 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b09c340 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b0bc350 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b0dc360 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b0fc370 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b11c380 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b13c390 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b15c3a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b17c3b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b19c3c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b1bc3d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b1dc3e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b1fc3f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b21c400 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b23c410 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b25c420 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b27c430 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b29c440 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b2bc450 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b2dc460 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b2fc470 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b31c480 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b33c490 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b35c4a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b37c4b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b39c4c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b3bc4d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b3dc4e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b3fc4f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b41c500 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b43c510 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b45c520 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b47c530 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b49c540 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b4bc550 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b4dc560 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b4fc570 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b51c580 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b53c590 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b55c5a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b57c5b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b59c5c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b5bc5d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b5dc5e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b5fc5f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b61c600 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b63c610 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b65c620 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b67c630 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b69c640 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b6bc650 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b6dc660 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b6fc670 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b71c680 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b73c690 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b75c6a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b77c6b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b79c6c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b7bc6d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b7dc6e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b7fc6f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b81c700 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b83c710 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b85c720 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b87c730 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b89c740 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b8bc750 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b8dc760 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b8fc770 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b91c780 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b93c790 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b95c7a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b97c7b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b99c7c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b9bc7d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b9dc7e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b9fc7f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ba1c800 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ba3c810 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ba5c820 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ba7c830 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ba9c840 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0babc850 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0badc860 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bafc870 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bb1c880 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bb3c890 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bb5c8a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bb7c8b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bb9c8c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bbbc8d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bbdc8e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bbfc8f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bc1c900 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bc3c910 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bc5c920 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bc7c930 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bc9c940 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bcbc950 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bcdc960 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bcfc970 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bd1c980 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bd3c990 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bd5c9a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bd7c9b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bd9c9c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bdbc9d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bddc9e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bdfc9f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0be1ca00 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0be3ca10 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0be5ca20 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0be7ca30 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0be9ca40 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bebca50 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bedca60 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0befca70 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bf1ca80 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bf3ca90 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bf5caa0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bf7cab0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bf9cac0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bfbcad0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bfdcae0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bffcaf0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c01cb00 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c03cb10 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c05cb20 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c07cb30 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c09cb40 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c0bcb50 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c0dcb60 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c0fcb70 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c11cb80 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c13cb90 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c15cba0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c17cbb0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c19cbc0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c1bcbd0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c1dcbe0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c1fcbf0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c21cc00 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c23cc10 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c25cc20 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c27cc30 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c29cc40 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c2bcc50 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c2dcc60 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c2fcc70 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c31cc80 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c33cc90 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c35cca0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c37ccb0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c39ccc0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c3bccd0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c3dcce0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c3fccf0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c41cd00 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c43cd10 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c45cd20 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c47cd30 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c49cd40 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c4bcd50 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c4dcd60 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c4fcd70 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c51cd80 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c53cd90 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c55cda0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c57cdb0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c59cdc0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c5bcdd0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c5dcde0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c5fcdf0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c61ce00 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c63ce10 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c65ce20 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c67ce30 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c69ce40 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c6bce50 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c6dce60 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c6fce70 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c71ce80 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c73ce90 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c75cea0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c77ceb0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c79cec0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c7bced0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c7dcee0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c7fcef0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c81cf00 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c83cf10 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c85cf20 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c87cf30 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c89cf40 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c8bcf50 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c8dcf60 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c8fcf70 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c91cf80 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c93cf90 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c95cfa0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c97cfb0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c99cfc0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c9bcfd0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c9dcfe0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c9fcff0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ca1d000 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ca3d010 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ca5d020 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ca7d030 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ca9d040 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0cabd050 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0cadd060 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0cafd070 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0cb1d080 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0cb3d090 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0cb5d0a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0cb7d0b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0cb9d0c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0cbbd0d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0cbdd0e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0cbfd0f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0cc1d100 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0cc3d110 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0cc5d120 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0cc7d130 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0cc9d140 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ccbd150 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ccdd160 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ccfd170 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0cd1d180 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:42\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0cd3d190 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08635220 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08d7b1b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08d9b1c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08dbb1d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08ddb1e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08dfb1f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08e1b200 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08e3b210 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08e5b220 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08e7b230 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08e9b240 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08ebb250 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08edb260 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08efb270 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08f1b280 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08f3b290 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08f5b2a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08f7b2b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08f9b2c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08fbb2d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08fdb2e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08ffb2f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0901b300 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0903b310 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0905b320 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0907b330 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0909b340 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb090bb350 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb090db360 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb090fb370 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0911b380 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0913b390 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0915b3a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0917b3b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0919b3c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb091bb3d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb091db3e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb091fb3f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0921b400 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0923b410 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0925b420 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0927b430 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0929b440 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb092bb450 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb092db460 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb092fb470 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0931b480 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0933b490 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0935b4a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0937b4b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0939b4c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb093bb4d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb093db4e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb093fb4f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0941b500 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0943b510 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0945b520 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0947b530 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0949b540 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb094bb550 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb094db560 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb094fb570 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0951b580 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0953b590 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0955b5a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0957b5b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0959b5c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb095bb5d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb095db5e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb095fb5f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0961b600 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0963b610 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0965b620 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0967b630 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0969b640 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb096bb650 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb096db660 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb096fb670 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0971b680 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0973b690 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0975b6a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0977b6b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0979b6c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb097bb6d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb097db6e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb097fb6f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0981b700 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0983b710 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0985b720 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0987b730 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0989b740 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb098bb750 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb098db760 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb098fb770 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0991b780 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0993b790 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0995b7a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0997b7b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0999b7c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb099bb7d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb099db7e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb099fb7f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09a1b800 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09a3b810 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09a5b820 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09a7b830 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09a9b840 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09abb850 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09adb860 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09afb870 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09b1b880 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09b3b890 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09b5b8a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09b7b8b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09b9b8c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09bbb8d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09bdb8e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09bfb8f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09c1b900 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09c3b910 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09c5b920 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09c7b930 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09c9b940 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09cbb950 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09cdb960 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09cfb970 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09d1b980 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09d3b990 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09d5b9a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09d7b9b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09d9b9c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09dbb9d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09ddb9e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09dfb9f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09e1ba00 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09e3ba10 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09e5ba20 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09e7ba30 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09e9ba40 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09ebba50 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09edba60 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09efba70 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09f1ba80 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09f3ba90 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09f5baa0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09f7bab0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09f9bac0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09fbbad0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09fdbae0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09ffbaf0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a01bb00 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a03bb10 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a05bb20 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a07bb30 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a09bb40 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a0bbb50 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a0dbb60 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a0fbb70 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a11bb80 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a13bb90 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a15bba0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a17bbb0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a19bbc0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a1bbbd0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a1dbbe0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a1fbbf0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a21bc00 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a23bc10 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a25bc20 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a27bc30 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a29bc40 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a2bbc50 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a2dbc60 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a2fbc70 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a31bc80 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a33bc90 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a35bca0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a37bcb0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a39bcc0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a3bbcd0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a3dbce0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a3fbcf0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a41bd00 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a43bd10 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a45bd20 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a47bd30 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a49bd40 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a4bbd50 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a4dbd60 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a4fbd70 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a51bd80 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a53bd90 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a55bda0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a57bdb0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a59bdc0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a5bbdd0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a5dbde0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a5fbdf0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a61be00 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a63be10 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a65be20 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a67be30 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a69be40 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a6bbe50 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a6dbe60 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a6fbe70 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a71be80 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a73be90 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a75bea0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a77beb0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a79bec0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a7bbed0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a7dbee0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a7fbef0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a81bf00 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a83bf10 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a85bf20 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a87bf30 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a89bf40 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a8bbf50 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a8dbf60 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a8fbf70 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a91bf80 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a93bf90 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a95bfa0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a97bfb0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a99bfc0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a9bbfd0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a9dbfe0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a9fbff0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0aa1c000 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0aa3c010 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0aa5c020 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0aa7c030 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0aa9c040 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0aabc050 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0aadc060 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0aafc070 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ab1c080 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ab3c090 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ab5c0a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ab7c0b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ab9c0c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0abbc0d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0abdc0e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0abfc0f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ac1c100 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ac3c110 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ac5c120 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ac7c130 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ac9c140 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0acbc150 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0acdc160 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0acfc170 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ad1c180 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ad3c190 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ad5c1a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ad7c1b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ad9c1c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0adbc1d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0addc1e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0adfc1f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ae1c200 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ae3c210 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ae5c220 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ae7c230 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ae9c240 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0aebc250 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0aedc260 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0aefc270 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0af1c280 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0af3c290 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0af5c2a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0af7c2b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0af9c2c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0afbc2d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0afdc2e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0affc2f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b01c300 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b03c310 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b05c320 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b07c330 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b09c340 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b0bc350 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b0dc360 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b0fc370 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b11c380 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b13c390 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b15c3a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b17c3b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b19c3c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b1bc3d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b1dc3e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b1fc3f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b21c400 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b23c410 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b25c420 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b27c430 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b29c440 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b2bc450 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b2dc460 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b2fc470 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b31c480 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b33c490 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b35c4a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b37c4b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b39c4c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b3bc4d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b3dc4e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b3fc4f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b41c500 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b43c510 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b45c520 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b47c530 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b49c540 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b4bc550 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b4dc560 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b4fc570 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b51c580 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b53c590 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b55c5a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b57c5b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b59c5c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b5bc5d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b5dc5e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b5fc5f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b61c600 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b63c610 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b65c620 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b67c630 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b69c640 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b6bc650 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b6dc660 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b6fc670 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b71c680 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b73c690 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b75c6a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b77c6b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b79c6c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b7bc6d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b7dc6e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b7fc6f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b81c700 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b83c710 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b85c720 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b87c730 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b89c740 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b8bc750 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b8dc760 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b8fc770 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b91c780 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b93c790 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b95c7a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b97c7b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b99c7c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b9bc7d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b9dc7e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b9fc7f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ba1c800 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ba3c810 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ba5c820 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ba7c830 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ba9c840 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0babc850 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0badc860 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bafc870 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bb1c880 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bb3c890 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bb5c8a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bb7c8b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bb9c8c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bbbc8d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bbdc8e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bbfc8f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bc1c900 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bc3c910 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bc5c920 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bc7c930 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bc9c940 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bcbc950 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bcdc960 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bcfc970 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bd1c980 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bd3c990 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bd5c9a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bd7c9b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bd9c9c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bdbc9d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bddc9e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bdfc9f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0be1ca00 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0be3ca10 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0be5ca20 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0be7ca30 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0be9ca40 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bebca50 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bedca60 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0befca70 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bf1ca80 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bf3ca90 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bf5caa0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bf7cab0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bf9cac0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bfbcad0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bfdcae0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bffcaf0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c01cb00 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c03cb10 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c05cb20 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c07cb30 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c09cb40 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c0bcb50 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c0dcb60 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c0fcb70 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c11cb80 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c13cb90 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c15cba0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c17cbb0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c19cbc0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c1bcbd0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c1dcbe0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c1fcbf0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c21cc00 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c23cc10 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c25cc20 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c27cc30 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c29cc40 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c2bcc50 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c2dcc60 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c2fcc70 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c31cc80 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c33cc90 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c35cca0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c37ccb0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c39ccc0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c3bccd0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c3dcce0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c3fccf0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c41cd00 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c43cd10 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c45cd20 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c47cd30 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c49cd40 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c4bcd50 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c4dcd60 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c4fcd70 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c51cd80 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c53cd90 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c55cda0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c57cdb0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c59cdc0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c5bcdd0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c5dcde0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c5fcdf0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c61ce00 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c63ce10 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c65ce20 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c67ce30 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c69ce40 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c6bce50 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c6dce60 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c6fce70 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c71ce80 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c73ce90 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c75cea0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c77ceb0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c79cec0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c7bced0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c7dcee0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c7fcef0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c81cf00 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c83cf10 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c85cf20 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c87cf30 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c89cf40 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c8bcf50 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c8dcf60 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c8fcf70 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c91cf80 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c93cf90 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c95cfa0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c97cfb0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c99cfc0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c9bcfd0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c9dcfe0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c9fcff0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ca1d000 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ca3d010 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ca5d020 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ca7d030 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ca9d040 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0cabd050 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0cadd060 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0cafd070 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0cb1d080 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0cb3d090 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0cb5d0a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0cb7d0b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0cb9d0c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0cbbd0d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0cbdd0e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0cbfd0f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0cc1d100 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0cc3d110 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0cc5d120 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0cc7d130 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0cc9d140 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ccbd150 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ccdd160 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ccfd170 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0cd1d180 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0cd3d190 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb087a8490 for tiles in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m211\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Computing short-range forces (using 8 tiles and 32 / 32 cores) done.\n",
"[02:24:43\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Acceleration loop, direction 0...\n",
"[02:24:43\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Acceleration loop, direction 0 done.\n",
"[02:24:43\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Kick loop, direction 0...\n",
"[02:24:43\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Kick loop, direction 0 done.\n",
"[02:24:43\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Acceleration loop, direction 1...\n",
"[02:24:43\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Acceleration loop, direction 1 done.\n",
"[02:24:43\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Kick loop, direction 1...\n",
"[02:24:43\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Kick loop, direction 1 done.\n",
"[02:24:43\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Acceleration loop, direction 2...\n",
"[02:24:43\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Acceleration loop, direction 2 done.\n",
"[02:24:43\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Kick loop, direction 2...\n",
"[02:24:43\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Kick loop, direction 2 done.\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08c1b190 for g_pad in \u001b[38;5;227mpmcola.c\u001b[0;36m:\u001b[38;5;192mkick_pm_cola\u001b[0;36m:\u001b[0;32m592\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08d1b1a0 for pp in \u001b[38;5;227mpmcola.c\u001b[0;36m:\u001b[38;5;192mkick_pm_cola\u001b[0;36m:\u001b[0;32m598\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]====|Kicking particles (using 32 cores) done.\n",
"[02:24:43\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]====|Drifting particles (using 32 cores)...\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mndrift=3\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mnkick=3\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246maiDrift=0.192500\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246maKick=0.216250\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mafDrift=0.240000\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246malpha_p=0.843966\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246malpha_lpt_1=0.000000\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246malpha_lpt_2=0.000000\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246malpha_ext=0.000000\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Drift loop, direction 0...\n",
"[02:24:43\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Drift loop, direction 0 done.\n",
"[02:24:43\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Drift loop, direction 1...\n",
"[02:24:43\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Drift loop, direction 1 done.\n",
"[02:24:43\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Drift loop, direction 2...\n",
"[02:24:43\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Drift loop, direction 2 done.\n",
"[02:24:43\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]====|Drifting particles (using 32 cores) done.\n",
"[02:24:43\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]==|ModuleP3M: End P3M step 4/20, time_kick:0.216250, time_drift=0.240000.\n",
"[02:24:43\u001b[00m|\u001b[38;5;159mTIMER \u001b[00m]==|Step 4/20: Density: 13.223 CPU - 0.432 wallclock seconds used.\n",
"[02:24:43\u001b[00m|\u001b[38;5;159mTIMER \u001b[00m]==|Step 4/20: Potential: 0.789 CPU - 0.029 wallclock seconds used.\n",
"[02:24:43\u001b[00m|\u001b[38;5;159mTIMER \u001b[00m]==|Step 4/20: Accelerations (long-range): 1.051 CPU - 0.039 wallclock seconds used.\n",
"[02:24:43\u001b[00m|\u001b[38;5;159mTIMER \u001b[00m]==|Step 4/20: Accelerations (short-range): 2.743 CPU - 0.137 wallclock seconds used.\n",
"[02:24:43\u001b[00m|\u001b[38;5;159mTIMER \u001b[00m]==|Step 4/20: Kick: 1.159 CPU - 0.038 wallclock seconds used.\n",
"[02:24:43\u001b[00m|\u001b[38;5;159mTIMER \u001b[00m]==|Step 4/20: Drift: 2.291 CPU - 0.077 wallclock seconds used.\n",
"[02:24:43\u001b[00m|\u001b[38;5;159mTIMER \u001b[00m]==|Step 4/20: Inputs: 0.000 CPU - 0.000 wallclock seconds used.\n",
"[02:24:43\u001b[00m|\u001b[38;5;159mTIMER \u001b[00m]==|Step 4/20: Diagnostic: 0.000 CPU - 0.000 wallclock seconds used.\n",
"[02:24:43\u001b[00m|\u001b[38;5;159mTIMER \u001b[00m]==|Step 4/20: Outputs: 0.000 CPU - 0.000 wallclock seconds used.\n",
"[02:24:43\u001b[00m|\u001b[38;5;159mTIMER \u001b[00m]==|Step 4/20: Total Evolution: 21.256 CPU - 0.754 wallclock seconds used.\n",
"[02:24:43\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]==|ModuleP3M: Begin P3M step 5/20, time_kick:0.216250, time_drift=0.240000.\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]====|\u001b[38;5;246mGiven the available memory, 4095 threads could be allocated and 32 threads will be used in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel\u001b[0;36m:\u001b[0;32m347\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]====|\u001b[38;5;246mGiven the available memory, 4095 threads could be allocated and 32 threads will be used in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m73\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]====|Getting density contrast (using 32 cores and 32 arrays, parallel routine 1)...\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]======|\u001b[38;5;246mPerforming CiC binning...\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 0...\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148948000b60 for threadedDensity[31] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 31...\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148938000b60 for threadedDensity[18] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148918000b60 for threadedDensity[15] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148930000b60 for threadedDensity[14] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 18...\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 14...\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1489a8000b60 for threadedDensity[30] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148968000b60 for threadedDensity[10] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 30...\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 10...\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1488dc000b60 for threadedDensity[17] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1488f8000b60 for threadedDensity[19] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 17...\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 19...\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148928000b60 for threadedDensity[20] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148950000b60 for threadedDensity[9] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 20...\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 9...\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148990000b60 for threadedDensity[21] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148908000b60 for threadedDensity[8] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 21...\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 8...\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1489b8000b60 for threadedDensity[4] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148980000b60 for threadedDensity[11] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 4...\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 11...\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148988000b60 for threadedDensity[28] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148960000b60 for threadedDensity[13] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1489a0000b60 for threadedDensity[3] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 13...\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 3...\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1488d0000b60 for threadedDensity[5] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148940000b60 for threadedDensity[27] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 5...\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 27...\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148978000b60 for threadedDensity[26] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148920000b60 for threadedDensity[12] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 26...\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 12...\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 28...\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1488e8000b60 for threadedDensity[2] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 15...\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 2...\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1488f0000b60 for threadedDensity[24] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148958000b60 for threadedDensity[22] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 24...\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 22...\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148910000b60 for threadedDensity[23] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1488e0000b60 for threadedDensity[6] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 23...\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 6...\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1489b0000b60 for threadedDensity[1] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148900000b60 for threadedDensity[16] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 1...\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148998000b60 for threadedDensity[25] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148970000b60 for threadedDensity[7] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 25...\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 7...\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 16...\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1488d8000b60 for threadedDensity[29] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 29...\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 0 done.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 28 done.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 21 done.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 8 done.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 20 done.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 9 done.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 19 done.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 17 done.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 29 done.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 4 done.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 13 done.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 3 done.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 5 done.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 27 done.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 26 done.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 12 done.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 10 done.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 30 done.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 2 done.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 15 done.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 24 done.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 22 done.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 1 done.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 31 done.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 14 done.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 18 done.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 23 done.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 6 done.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 25 done.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 7 done.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 16 done.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 11 done.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]======|\u001b[38;5;246mPerforming CiC done.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]======|\u001b[38;5;246mPerforming CiC reduction...\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x1489b0000b60 for threadedDensity[1] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x1488e8000b60 for threadedDensity[2] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x1489a0000b60 for threadedDensity[3] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x1489b8000b60 for threadedDensity[4] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x1488d0000b60 for threadedDensity[5] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x1488e0000b60 for threadedDensity[6] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148970000b60 for threadedDensity[7] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148908000b60 for threadedDensity[8] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148950000b60 for threadedDensity[9] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148968000b60 for threadedDensity[10] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148980000b60 for threadedDensity[11] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148920000b60 for threadedDensity[12] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148960000b60 for threadedDensity[13] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148930000b60 for threadedDensity[14] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148918000b60 for threadedDensity[15] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148900000b60 for threadedDensity[16] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x1488dc000b60 for threadedDensity[17] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148938000b60 for threadedDensity[18] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x1488f8000b60 for threadedDensity[19] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148928000b60 for threadedDensity[20] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148990000b60 for threadedDensity[21] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148958000b60 for threadedDensity[22] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148910000b60 for threadedDensity[23] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x1488f0000b60 for threadedDensity[24] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148998000b60 for threadedDensity[25] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148978000b60 for threadedDensity[26] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148940000b60 for threadedDensity[27] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148988000b60 for threadedDensity[28] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x1488d8000b60 for threadedDensity[29] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x1489a8000b60 for threadedDensity[30] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148948000b60 for threadedDensity[31] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]======|\u001b[38;5;246mPerforming CiC reduction done.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]====|Getting density contrast (using 32 cores and 32 arrays, parallel routine 1) done.\n",
"[02:24:43\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]====|Getting gravitational potential, periodic boundary conditions (using 32 cores)...\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated memory (1081344 bytes) at 0x55cb08c1b190 for AUX in \u001b[38;5;227mpoisson_solvers.c\u001b[0;36m:\u001b[38;5;192msolve_poisson_DFT\u001b[0;36m:\u001b[0;32m106\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08c1b190 for AUX in \u001b[38;5;227mpoisson_solvers.c\u001b[0;36m:\u001b[38;5;192msolve_poisson_DFT\u001b[0;36m:\u001b[0;32m116\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]====|Getting gravitational potential, periodic boundary conditions (using 32 cores) done.\n",
"[02:24:43\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]====|Kicking particles (using 32 cores)...\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mnkick=4\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mndrift=4\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246maiKick=0.216250\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246maDrift=0.240000\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mafKick=0.263750\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mbeta_delta=-0.080000\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mbeta_lpt_1=0.000000\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mbeta_lpt_2=0.000000\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mbeta_ext=0.000000\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated memory (1048576 bytes) at 0x55cb08c1b190 for g_pad in \u001b[38;5;227mpmcola.c\u001b[0;36m:\u001b[38;5;192mkick_pm_cola\u001b[0;36m:\u001b[0;32m478\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated memory (393216 bytes) at 0x55cb08d1b1a0 for pp in \u001b[38;5;227mpmcola.c\u001b[0;36m:\u001b[38;5;192mkick_pm_cola\u001b[0;36m:\u001b[0;32m554\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Computing short-range forces (using 8 tiles and 32 / 32 cores)...\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (8192 bytes) at 0x55cb089067c0 for tiles in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m57\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb08635220 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb08d7b1b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb08d9b1c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb08dbb1d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb08ddb1e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb08dfb1f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb08e1b200 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb08e3b210 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb08e5b220 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb08e7b230 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb08e9b240 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb08ebb250 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb08edb260 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb08efb270 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb08f1b280 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb08f3b290 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb08f5b2a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb08f7b2b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb08f9b2c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb08fbb2d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb08fdb2e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb08ffb2f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0901b300 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0903b310 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0905b320 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0907b330 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0909b340 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb090bb350 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb090db360 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb090fb370 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0911b380 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0913b390 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0915b3a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0917b3b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0919b3c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb091bb3d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb091db3e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb091fb3f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0921b400 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0923b410 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0925b420 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0927b430 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0929b440 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb092bb450 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb092db460 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb092fb470 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0931b480 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0933b490 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0935b4a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0937b4b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0939b4c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb093bb4d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb093db4e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb093fb4f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0941b500 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0943b510 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0945b520 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0947b530 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0949b540 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb094bb550 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb094db560 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb094fb570 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0951b580 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0953b590 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0955b5a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0957b5b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0959b5c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb095bb5d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb095db5e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb095fb5f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0961b600 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0963b610 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0965b620 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0967b630 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0969b640 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb096bb650 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb096db660 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb096fb670 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0971b680 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0973b690 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0975b6a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0977b6b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0979b6c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb097bb6d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb097db6e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb097fb6f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0981b700 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0983b710 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0985b720 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0987b730 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0989b740 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb098bb750 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb098db760 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb098fb770 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0991b780 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0993b790 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0995b7a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0997b7b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0999b7c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb099bb7d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb099db7e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb099fb7f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09a1b800 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09a3b810 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09a5b820 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09a7b830 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09a9b840 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09abb850 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09adb860 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09afb870 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09b1b880 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09b3b890 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09b5b8a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09b7b8b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09b9b8c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09bbb8d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09bdb8e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09bfb8f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09c1b900 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09c3b910 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09c5b920 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09c7b930 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09c9b940 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09cbb950 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09cdb960 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09cfb970 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09d1b980 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09d3b990 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09d5b9a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09d7b9b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09d9b9c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09dbb9d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09ddb9e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09dfb9f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09e1ba00 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09e3ba10 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09e5ba20 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09e7ba30 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09e9ba40 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09ebba50 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09edba60 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09efba70 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09f1ba80 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09f3ba90 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09f5baa0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09f7bab0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09f9bac0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09fbbad0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09fdbae0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09ffbaf0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a01bb00 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a03bb10 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a05bb20 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a07bb30 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a09bb40 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a0bbb50 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a0dbb60 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a0fbb70 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a11bb80 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a13bb90 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a15bba0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a17bbb0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a19bbc0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a1bbbd0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a1dbbe0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a1fbbf0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a21bc00 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a23bc10 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a25bc20 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a27bc30 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a29bc40 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a2bbc50 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a2dbc60 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a2fbc70 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a31bc80 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a33bc90 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a35bca0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a37bcb0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a39bcc0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a3bbcd0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a3dbce0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a3fbcf0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a41bd00 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a43bd10 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a45bd20 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a47bd30 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a49bd40 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a4bbd50 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a4dbd60 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a4fbd70 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a51bd80 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a53bd90 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a55bda0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a57bdb0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a59bdc0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a5bbdd0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a5dbde0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a5fbdf0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a61be00 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a63be10 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a65be20 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a67be30 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a69be40 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a6bbe50 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a6dbe60 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a6fbe70 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a71be80 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a73be90 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a75bea0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a77beb0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a79bec0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a7bbed0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a7dbee0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a7fbef0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a81bf00 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a83bf10 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a85bf20 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a87bf30 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a89bf40 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a8bbf50 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a8dbf60 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a8fbf70 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a91bf80 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a93bf90 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a95bfa0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a97bfb0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a99bfc0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a9bbfd0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a9dbfe0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a9fbff0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0aa1c000 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0aa3c010 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0aa5c020 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0aa7c030 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0aa9c040 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0aabc050 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0aadc060 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0aafc070 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ab1c080 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ab3c090 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ab5c0a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ab7c0b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ab9c0c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0abbc0d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0abdc0e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0abfc0f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ac1c100 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ac3c110 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ac5c120 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ac7c130 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ac9c140 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0acbc150 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0acdc160 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0acfc170 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ad1c180 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ad3c190 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ad5c1a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ad7c1b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ad9c1c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0adbc1d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0addc1e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0adfc1f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ae1c200 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ae3c210 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ae5c220 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ae7c230 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ae9c240 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0aebc250 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0aedc260 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0aefc270 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0af1c280 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0af3c290 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0af5c2a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0af7c2b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0af9c2c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0afbc2d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0afdc2e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0affc2f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b01c300 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b03c310 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b05c320 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b07c330 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b09c340 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b0bc350 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b0dc360 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b0fc370 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b11c380 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b13c390 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b15c3a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b17c3b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b19c3c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b1bc3d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b1dc3e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b1fc3f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b21c400 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b23c410 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b25c420 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b27c430 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b29c440 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b2bc450 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b2dc460 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b2fc470 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b31c480 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b33c490 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b35c4a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b37c4b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b39c4c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b3bc4d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b3dc4e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b3fc4f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b41c500 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b43c510 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b45c520 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b47c530 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b49c540 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b4bc550 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b4dc560 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b4fc570 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b51c580 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b53c590 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b55c5a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b57c5b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b59c5c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b5bc5d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b5dc5e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b5fc5f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b61c600 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b63c610 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b65c620 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b67c630 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b69c640 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b6bc650 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b6dc660 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b6fc670 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b71c680 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b73c690 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b75c6a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b77c6b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b79c6c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b7bc6d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b7dc6e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b7fc6f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b81c700 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b83c710 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b85c720 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b87c730 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b89c740 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b8bc750 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b8dc760 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b8fc770 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b91c780 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b93c790 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b95c7a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b97c7b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b99c7c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b9bc7d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b9dc7e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b9fc7f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ba1c800 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ba3c810 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ba5c820 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ba7c830 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ba9c840 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0babc850 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0badc860 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bafc870 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bb1c880 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bb3c890 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bb5c8a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bb7c8b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bb9c8c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bbbc8d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bbdc8e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bbfc8f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bc1c900 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bc3c910 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bc5c920 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bc7c930 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bc9c940 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bcbc950 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bcdc960 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bcfc970 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bd1c980 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bd3c990 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bd5c9a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bd7c9b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bd9c9c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bdbc9d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bddc9e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bdfc9f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0be1ca00 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0be3ca10 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0be5ca20 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0be7ca30 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0be9ca40 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bebca50 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bedca60 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0befca70 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bf1ca80 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bf3ca90 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bf5caa0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bf7cab0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bf9cac0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bfbcad0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bfdcae0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bffcaf0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c01cb00 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c03cb10 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c05cb20 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c07cb30 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c09cb40 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c0bcb50 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c0dcb60 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c0fcb70 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c11cb80 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c13cb90 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c15cba0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c17cbb0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c19cbc0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c1bcbd0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c1dcbe0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c1fcbf0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c21cc00 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c23cc10 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c25cc20 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c27cc30 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c29cc40 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c2bcc50 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c2dcc60 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c2fcc70 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c31cc80 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c33cc90 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c35cca0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c37ccb0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c39ccc0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c3bccd0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c3dcce0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c3fccf0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c41cd00 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c43cd10 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c45cd20 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c47cd30 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c49cd40 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c4bcd50 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c4dcd60 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c4fcd70 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c51cd80 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c53cd90 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c55cda0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c57cdb0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c59cdc0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c5bcdd0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c5dcde0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c5fcdf0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c61ce00 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c63ce10 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c65ce20 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c67ce30 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c69ce40 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c6bce50 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c6dce60 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c6fce70 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c71ce80 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c73ce90 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c75cea0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c77ceb0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c79cec0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c7bced0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c7dcee0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c7fcef0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c81cf00 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c83cf10 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c85cf20 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c87cf30 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c89cf40 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c8bcf50 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c8dcf60 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c8fcf70 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c91cf80 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c93cf90 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c95cfa0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c97cfb0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c99cfc0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c9bcfd0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c9dcfe0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c9fcff0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ca1d000 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ca3d010 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ca5d020 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ca7d030 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ca9d040 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0cabd050 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0cadd060 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0cafd070 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0cb1d080 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0cb3d090 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0cb5d0a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0cb7d0b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0cb9d0c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0cbbd0d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0cbdd0e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0cbfd0f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0cc1d100 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0cc3d110 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0cc5d120 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0cc7d130 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0cc9d140 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ccbd150 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ccdd160 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ccfd170 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0cd1d180 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0cd3d190 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08635220 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08d7b1b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08d9b1c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08dbb1d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08ddb1e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08dfb1f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08e1b200 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08e3b210 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08e5b220 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08e7b230 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08e9b240 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08ebb250 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08edb260 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08efb270 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08f1b280 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08f3b290 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08f5b2a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08f7b2b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08f9b2c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08fbb2d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08fdb2e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08ffb2f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0901b300 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0903b310 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0905b320 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0907b330 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0909b340 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb090bb350 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb090db360 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb090fb370 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0911b380 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0913b390 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0915b3a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0917b3b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0919b3c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb091bb3d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb091db3e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb091fb3f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0921b400 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0923b410 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0925b420 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0927b430 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0929b440 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb092bb450 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb092db460 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb092fb470 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0931b480 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0933b490 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0935b4a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0937b4b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0939b4c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb093bb4d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb093db4e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb093fb4f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0941b500 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0943b510 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0945b520 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0947b530 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0949b540 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb094bb550 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb094db560 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb094fb570 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0951b580 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0953b590 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0955b5a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0957b5b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0959b5c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb095bb5d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb095db5e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb095fb5f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0961b600 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0963b610 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0965b620 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0967b630 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0969b640 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb096bb650 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb096db660 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb096fb670 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0971b680 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0973b690 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0975b6a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0977b6b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0979b6c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb097bb6d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb097db6e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb097fb6f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0981b700 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0983b710 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0985b720 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0987b730 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0989b740 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb098bb750 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb098db760 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb098fb770 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0991b780 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0993b790 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0995b7a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0997b7b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0999b7c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb099bb7d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb099db7e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb099fb7f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09a1b800 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09a3b810 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09a5b820 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09a7b830 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09a9b840 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09abb850 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09adb860 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09afb870 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09b1b880 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09b3b890 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09b5b8a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09b7b8b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09b9b8c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09bbb8d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09bdb8e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09bfb8f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09c1b900 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09c3b910 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09c5b920 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09c7b930 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09c9b940 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09cbb950 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09cdb960 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09cfb970 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09d1b980 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09d3b990 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09d5b9a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09d7b9b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09d9b9c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09dbb9d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09ddb9e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09dfb9f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09e1ba00 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09e3ba10 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09e5ba20 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09e7ba30 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09e9ba40 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09ebba50 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09edba60 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09efba70 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09f1ba80 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09f3ba90 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09f5baa0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09f7bab0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09f9bac0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09fbbad0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09fdbae0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09ffbaf0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a01bb00 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a03bb10 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a05bb20 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a07bb30 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a09bb40 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a0bbb50 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a0dbb60 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a0fbb70 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a11bb80 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a13bb90 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a15bba0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a17bbb0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a19bbc0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a1bbbd0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a1dbbe0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a1fbbf0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a21bc00 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a23bc10 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a25bc20 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a27bc30 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a29bc40 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a2bbc50 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a2dbc60 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a2fbc70 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a31bc80 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a33bc90 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a35bca0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a37bcb0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a39bcc0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a3bbcd0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a3dbce0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a3fbcf0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a41bd00 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a43bd10 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a45bd20 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a47bd30 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a49bd40 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a4bbd50 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a4dbd60 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a4fbd70 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a51bd80 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a53bd90 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a55bda0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a57bdb0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a59bdc0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a5bbdd0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a5dbde0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a5fbdf0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a61be00 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a63be10 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a65be20 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a67be30 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a69be40 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a6bbe50 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a6dbe60 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a6fbe70 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a71be80 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a73be90 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a75bea0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a77beb0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a79bec0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a7bbed0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a7dbee0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a7fbef0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a81bf00 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a83bf10 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a85bf20 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a87bf30 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a89bf40 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a8bbf50 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a8dbf60 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a8fbf70 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a91bf80 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a93bf90 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a95bfa0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a97bfb0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a99bfc0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a9bbfd0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a9dbfe0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a9fbff0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0aa1c000 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0aa3c010 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0aa5c020 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0aa7c030 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0aa9c040 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0aabc050 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0aadc060 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0aafc070 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ab1c080 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ab3c090 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ab5c0a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ab7c0b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ab9c0c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0abbc0d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0abdc0e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0abfc0f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ac1c100 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ac3c110 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ac5c120 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ac7c130 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ac9c140 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0acbc150 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0acdc160 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0acfc170 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ad1c180 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ad3c190 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ad5c1a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ad7c1b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ad9c1c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0adbc1d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0addc1e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0adfc1f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ae1c200 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ae3c210 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ae5c220 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ae7c230 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ae9c240 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0aebc250 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0aedc260 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0aefc270 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0af1c280 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0af3c290 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0af5c2a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0af7c2b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0af9c2c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0afbc2d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0afdc2e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0affc2f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b01c300 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b03c310 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b05c320 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b07c330 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b09c340 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b0bc350 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b0dc360 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b0fc370 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b11c380 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b13c390 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b15c3a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b17c3b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b19c3c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b1bc3d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b1dc3e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b1fc3f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b21c400 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b23c410 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b25c420 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b27c430 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b29c440 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b2bc450 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b2dc460 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b2fc470 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b31c480 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b33c490 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b35c4a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b37c4b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b39c4c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b3bc4d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b3dc4e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b3fc4f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b41c500 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b43c510 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b45c520 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b47c530 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b49c540 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b4bc550 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b4dc560 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b4fc570 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b51c580 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b53c590 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b55c5a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b57c5b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b59c5c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b5bc5d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b5dc5e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b5fc5f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b61c600 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b63c610 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b65c620 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b67c630 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b69c640 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b6bc650 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b6dc660 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b6fc670 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b71c680 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b73c690 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b75c6a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b77c6b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b79c6c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b7bc6d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b7dc6e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b7fc6f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b81c700 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b83c710 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b85c720 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b87c730 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b89c740 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b8bc750 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b8dc760 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b8fc770 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b91c780 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b93c790 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b95c7a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b97c7b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b99c7c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b9bc7d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b9dc7e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b9fc7f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ba1c800 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ba3c810 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ba5c820 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ba7c830 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ba9c840 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0babc850 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0badc860 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bafc870 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bb1c880 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bb3c890 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bb5c8a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bb7c8b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bb9c8c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bbbc8d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bbdc8e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bbfc8f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bc1c900 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bc3c910 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bc5c920 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bc7c930 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bc9c940 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bcbc950 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bcdc960 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bcfc970 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bd1c980 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bd3c990 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bd5c9a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bd7c9b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bd9c9c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bdbc9d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bddc9e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bdfc9f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0be1ca00 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0be3ca10 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0be5ca20 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0be7ca30 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0be9ca40 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bebca50 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bedca60 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0befca70 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bf1ca80 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bf3ca90 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bf5caa0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bf7cab0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bf9cac0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bfbcad0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bfdcae0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bffcaf0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c01cb00 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c03cb10 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c05cb20 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c07cb30 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c09cb40 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c0bcb50 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c0dcb60 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c0fcb70 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c11cb80 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c13cb90 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c15cba0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c17cbb0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c19cbc0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c1bcbd0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c1dcbe0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c1fcbf0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c21cc00 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c23cc10 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c25cc20 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c27cc30 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c29cc40 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c2bcc50 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c2dcc60 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c2fcc70 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c31cc80 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c33cc90 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c35cca0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c37ccb0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c39ccc0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c3bccd0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c3dcce0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c3fccf0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c41cd00 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c43cd10 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c45cd20 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c47cd30 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c49cd40 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c4bcd50 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c4dcd60 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c4fcd70 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c51cd80 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c53cd90 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c55cda0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c57cdb0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c59cdc0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c5bcdd0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c5dcde0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c5fcdf0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c61ce00 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c63ce10 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c65ce20 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c67ce30 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c69ce40 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c6bce50 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c6dce60 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c6fce70 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c71ce80 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c73ce90 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c75cea0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c77ceb0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c79cec0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c7bced0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c7dcee0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c7fcef0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c81cf00 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c83cf10 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c85cf20 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c87cf30 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c89cf40 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c8bcf50 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c8dcf60 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c8fcf70 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c91cf80 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c93cf90 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c95cfa0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c97cfb0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c99cfc0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c9bcfd0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c9dcfe0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c9fcff0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ca1d000 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ca3d010 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ca5d020 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ca7d030 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ca9d040 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0cabd050 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0cadd060 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0cafd070 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0cb1d080 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0cb3d090 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0cb5d0a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0cb7d0b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0cb9d0c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0cbbd0d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0cbdd0e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0cbfd0f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0cc1d100 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0cc3d110 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0cc5d120 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0cc7d130 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0cc9d140 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ccbd150 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ccdd160 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ccfd170 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0cd1d180 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0cd3d190 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb089067c0 for tiles in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m211\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Computing short-range forces (using 8 tiles and 32 / 32 cores) done.\n",
"[02:24:43\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Acceleration loop, direction 0...\n",
"[02:24:43\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Acceleration loop, direction 0 done.\n",
"[02:24:43\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Kick loop, direction 0...\n",
"[02:24:43\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Kick loop, direction 0 done.\n",
"[02:24:43\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Acceleration loop, direction 1...\n",
"[02:24:43\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Acceleration loop, direction 1 done.\n",
"[02:24:43\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Kick loop, direction 1...\n",
"[02:24:43\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Kick loop, direction 1 done.\n",
"[02:24:43\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Acceleration loop, direction 2...\n",
"[02:24:43\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Acceleration loop, direction 2 done.\n",
"[02:24:43\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Kick loop, direction 2...\n",
"[02:24:43\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Kick loop, direction 2 done.\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08c1b190 for g_pad in \u001b[38;5;227mpmcola.c\u001b[0;36m:\u001b[38;5;192mkick_pm_cola\u001b[0;36m:\u001b[0;32m592\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08d1b1a0 for pp in \u001b[38;5;227mpmcola.c\u001b[0;36m:\u001b[38;5;192mkick_pm_cola\u001b[0;36m:\u001b[0;32m598\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]====|Kicking particles (using 32 cores) done.\n",
"[02:24:43\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]====|Drifting particles (using 32 cores)...\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mndrift=4\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mnkick=4\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246maiDrift=0.240000\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246maKick=0.263750\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mafDrift=0.287500\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246malpha_p=0.619522\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246malpha_lpt_1=0.000000\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246malpha_lpt_2=0.000000\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246malpha_ext=0.000000\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Drift loop, direction 0...\n",
"[02:24:43\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Drift loop, direction 0 done.\n",
"[02:24:43\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Drift loop, direction 1...\n",
"[02:24:43\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Drift loop, direction 1 done.\n",
"[02:24:43\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Drift loop, direction 2...\n",
"[02:24:43\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Drift loop, direction 2 done.\n",
"[02:24:43\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]====|Drifting particles (using 32 cores) done.\n",
"[02:24:43\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]==|ModuleP3M: End P3M step 5/20, time_kick:0.263750, time_drift=0.287500.\n",
"[02:24:43\u001b[00m|\u001b[38;5;159mTIMER \u001b[00m]==|Step 5/20: Density: 13.297 CPU - 0.435 wallclock seconds used.\n",
"[02:24:43\u001b[00m|\u001b[38;5;159mTIMER \u001b[00m]==|Step 5/20: Potential: 0.812 CPU - 0.030 wallclock seconds used.\n",
"[02:24:43\u001b[00m|\u001b[38;5;159mTIMER \u001b[00m]==|Step 5/20: Accelerations (long-range): 1.069 CPU - 0.038 wallclock seconds used.\n",
"[02:24:43\u001b[00m|\u001b[38;5;159mTIMER \u001b[00m]==|Step 5/20: Accelerations (short-range): 2.929 CPU - 0.136 wallclock seconds used.\n",
"[02:24:43\u001b[00m|\u001b[38;5;159mTIMER \u001b[00m]==|Step 5/20: Kick: 1.175 CPU - 0.039 wallclock seconds used.\n",
"[02:24:43\u001b[00m|\u001b[38;5;159mTIMER \u001b[00m]==|Step 5/20: Drift: 2.270 CPU - 0.074 wallclock seconds used.\n",
"[02:24:43\u001b[00m|\u001b[38;5;159mTIMER \u001b[00m]==|Step 5/20: Inputs: 0.000 CPU - 0.000 wallclock seconds used.\n",
"[02:24:43\u001b[00m|\u001b[38;5;159mTIMER \u001b[00m]==|Step 5/20: Diagnostic: 0.000 CPU - 0.000 wallclock seconds used.\n",
"[02:24:43\u001b[00m|\u001b[38;5;159mTIMER \u001b[00m]==|Step 5/20: Outputs: 0.000 CPU - 0.000 wallclock seconds used.\n",
"[02:24:43\u001b[00m|\u001b[38;5;159mTIMER \u001b[00m]==|Step 5/20: Total Evolution: 21.551 CPU - 0.752 wallclock seconds used.\n",
"[02:24:43\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]==|ModuleP3M: Begin P3M step 6/20, time_kick:0.263750, time_drift=0.287500.\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]====|\u001b[38;5;246mGiven the available memory, 4095 threads could be allocated and 32 threads will be used in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel\u001b[0;36m:\u001b[0;32m347\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]====|\u001b[38;5;246mGiven the available memory, 4095 threads could be allocated and 32 threads will be used in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m73\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]====|Getting density contrast (using 32 cores and 32 arrays, parallel routine 1)...\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]======|\u001b[38;5;246mPerforming CiC binning...\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 0...\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148920000b60 for threadedDensity[12] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148978000b60 for threadedDensity[26] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 12...\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 26...\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148980000b60 for threadedDensity[11] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1489b8000b60 for threadedDensity[4] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 11...\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 4...\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1488f8000b60 for threadedDensity[19] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1488dc000b60 for threadedDensity[17] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 19...\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 17...\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148950000b60 for threadedDensity[9] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148928000b60 for threadedDensity[20] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 9...\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 20...\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148908000b60 for threadedDensity[8] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148990000b60 for threadedDensity[21] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 8...\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 21...\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1488d0000b60 for threadedDensity[5] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148940000b60 for threadedDensity[27] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 5...\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 27...\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1489a0000b60 for threadedDensity[3] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148960000b60 for threadedDensity[13] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 3...\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 13...\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148988000b60 for threadedDensity[28] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1488e8000b60 for threadedDensity[2] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148918000b60 for threadedDensity[15] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 2...\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 15...\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 28...\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148968000b60 for threadedDensity[10] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1489a8000b60 for threadedDensity[30] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 10...\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 30...\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148938000b60 for threadedDensity[18] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148930000b60 for threadedDensity[14] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 18...\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 14...\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1488f0000b60 for threadedDensity[24] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148958000b60 for threadedDensity[22] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 24...\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 22...\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1488e0000b60 for threadedDensity[6] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148910000b60 for threadedDensity[23] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 6...\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 23...\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1489b0000b60 for threadedDensity[1] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148948000b60 for threadedDensity[31] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 1...\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 31...\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148900000b60 for threadedDensity[16] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148998000b60 for threadedDensity[25] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148970000b60 for threadedDensity[7] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 25...\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 7...\u001b[00m\n",
"[02:24:43\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 16...\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1488d8000b60 for threadedDensity[29] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 29...\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 26 done.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 12 done.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 21 done.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 8 done.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 9 done.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 20 done.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 11 done.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 4 done.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 0 done.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 28 done.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 5 done.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 27 done.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 19 done.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 17 done.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 3 done.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 13 done.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 2 done.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 15 done.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 24 done.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 22 done.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 30 done.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 10 done.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 6 done.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 23 done.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 18 done.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 29 done.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 16 done.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 1 done.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 31 done.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 25 done.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 7 done.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 14 done.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]======|\u001b[38;5;246mPerforming CiC done.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]======|\u001b[38;5;246mPerforming CiC reduction...\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x1489b0000b60 for threadedDensity[1] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x1488e8000b60 for threadedDensity[2] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x1489a0000b60 for threadedDensity[3] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x1489b8000b60 for threadedDensity[4] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x1488d0000b60 for threadedDensity[5] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x1488e0000b60 for threadedDensity[6] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148970000b60 for threadedDensity[7] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148908000b60 for threadedDensity[8] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148950000b60 for threadedDensity[9] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148968000b60 for threadedDensity[10] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148980000b60 for threadedDensity[11] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148920000b60 for threadedDensity[12] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148960000b60 for threadedDensity[13] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148930000b60 for threadedDensity[14] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148918000b60 for threadedDensity[15] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148900000b60 for threadedDensity[16] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x1488dc000b60 for threadedDensity[17] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148938000b60 for threadedDensity[18] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x1488f8000b60 for threadedDensity[19] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148928000b60 for threadedDensity[20] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148990000b60 for threadedDensity[21] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148958000b60 for threadedDensity[22] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148910000b60 for threadedDensity[23] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x1488f0000b60 for threadedDensity[24] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148998000b60 for threadedDensity[25] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148978000b60 for threadedDensity[26] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148940000b60 for threadedDensity[27] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148988000b60 for threadedDensity[28] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x1488d8000b60 for threadedDensity[29] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x1489a8000b60 for threadedDensity[30] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148948000b60 for threadedDensity[31] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]======|\u001b[38;5;246mPerforming CiC reduction done.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]====|Getting density contrast (using 32 cores and 32 arrays, parallel routine 1) done.\n",
"[02:24:44\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]====|Getting gravitational potential, periodic boundary conditions (using 32 cores)...\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated memory (1081344 bytes) at 0x55cb08c1b190 for AUX in \u001b[38;5;227mpoisson_solvers.c\u001b[0;36m:\u001b[38;5;192msolve_poisson_DFT\u001b[0;36m:\u001b[0;32m106\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08c1b190 for AUX in \u001b[38;5;227mpoisson_solvers.c\u001b[0;36m:\u001b[38;5;192msolve_poisson_DFT\u001b[0;36m:\u001b[0;32m116\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]====|Getting gravitational potential, periodic boundary conditions (using 32 cores) done.\n",
"[02:24:44\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]====|Kicking particles (using 32 cores)...\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mnkick=5\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mndrift=5\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246maiKick=0.263750\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246maDrift=0.287500\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mafKick=0.311250\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mbeta_delta=-0.072297\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mbeta_lpt_1=0.000000\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mbeta_lpt_2=0.000000\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mbeta_ext=0.000000\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated memory (1048576 bytes) at 0x55cb08c1b190 for g_pad in \u001b[38;5;227mpmcola.c\u001b[0;36m:\u001b[38;5;192mkick_pm_cola\u001b[0;36m:\u001b[0;32m478\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated memory (393216 bytes) at 0x55cb08d1b1a0 for pp in \u001b[38;5;227mpmcola.c\u001b[0;36m:\u001b[38;5;192mkick_pm_cola\u001b[0;36m:\u001b[0;32m554\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Computing short-range forces (using 8 tiles and 32 / 32 cores)...\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (8192 bytes) at 0x55cb087cab30 for tiles in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m57\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb08635220 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb08d7b1b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb08d9b1c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb08dbb1d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb08ddb1e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb08dfb1f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb08e1b200 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb08e3b210 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb08e5b220 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb08e7b230 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb08e9b240 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb08ebb250 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb08edb260 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb08efb270 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb08f1b280 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb08f3b290 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb08f5b2a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb08f7b2b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb08f9b2c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb08fbb2d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb08fdb2e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb08ffb2f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0901b300 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0903b310 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0905b320 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0907b330 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0909b340 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb090bb350 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb090db360 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb090fb370 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0911b380 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0913b390 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0915b3a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0917b3b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0919b3c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb091bb3d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb091db3e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb091fb3f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0921b400 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0923b410 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0925b420 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0927b430 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0929b440 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb092bb450 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb092db460 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb092fb470 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0931b480 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0933b490 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0935b4a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0937b4b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0939b4c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb093bb4d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb093db4e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb093fb4f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0941b500 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0943b510 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0945b520 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0947b530 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0949b540 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb094bb550 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb094db560 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb094fb570 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0951b580 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0953b590 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0955b5a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0957b5b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0959b5c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb095bb5d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb095db5e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb095fb5f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0961b600 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0963b610 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0965b620 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0967b630 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0969b640 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb096bb650 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb096db660 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb096fb670 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0971b680 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0973b690 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0975b6a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0977b6b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0979b6c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb097bb6d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb097db6e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb097fb6f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0981b700 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0983b710 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0985b720 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0987b730 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0989b740 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb098bb750 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb098db760 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb098fb770 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0991b780 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0993b790 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0995b7a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0997b7b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0999b7c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb099bb7d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb099db7e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb099fb7f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09a1b800 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09a3b810 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09a5b820 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09a7b830 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09a9b840 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09abb850 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09adb860 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09afb870 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09b1b880 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09b3b890 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09b5b8a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09b7b8b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09b9b8c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09bbb8d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09bdb8e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09bfb8f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09c1b900 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09c3b910 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09c5b920 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09c7b930 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09c9b940 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09cbb950 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09cdb960 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09cfb970 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09d1b980 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09d3b990 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09d5b9a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09d7b9b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09d9b9c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09dbb9d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09ddb9e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09dfb9f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09e1ba00 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09e3ba10 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09e5ba20 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09e7ba30 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09e9ba40 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09ebba50 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09edba60 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09efba70 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09f1ba80 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09f3ba90 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09f5baa0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09f7bab0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09f9bac0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09fbbad0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09fdbae0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09ffbaf0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a01bb00 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a03bb10 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a05bb20 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a07bb30 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a09bb40 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a0bbb50 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a0dbb60 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a0fbb70 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a11bb80 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a13bb90 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a15bba0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a17bbb0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a19bbc0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a1bbbd0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a1dbbe0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a1fbbf0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a21bc00 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a23bc10 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a25bc20 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a27bc30 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a29bc40 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a2bbc50 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a2dbc60 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a2fbc70 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a31bc80 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a33bc90 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a35bca0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a37bcb0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a39bcc0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a3bbcd0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a3dbce0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a3fbcf0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a41bd00 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a43bd10 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a45bd20 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a47bd30 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a49bd40 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a4bbd50 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a4dbd60 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a4fbd70 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a51bd80 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a53bd90 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a55bda0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a57bdb0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a59bdc0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a5bbdd0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a5dbde0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a5fbdf0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a61be00 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a63be10 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a65be20 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a67be30 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a69be40 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a6bbe50 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a6dbe60 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a6fbe70 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a71be80 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a73be90 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a75bea0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a77beb0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a79bec0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a7bbed0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a7dbee0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a7fbef0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a81bf00 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a83bf10 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a85bf20 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a87bf30 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a89bf40 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a8bbf50 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a8dbf60 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a8fbf70 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a91bf80 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a93bf90 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a95bfa0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a97bfb0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a99bfc0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a9bbfd0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a9dbfe0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a9fbff0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0aa1c000 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0aa3c010 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0aa5c020 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0aa7c030 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0aa9c040 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0aabc050 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0aadc060 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0aafc070 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ab1c080 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ab3c090 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ab5c0a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ab7c0b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ab9c0c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0abbc0d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0abdc0e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0abfc0f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ac1c100 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ac3c110 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ac5c120 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ac7c130 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ac9c140 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0acbc150 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0acdc160 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0acfc170 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ad1c180 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ad3c190 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ad5c1a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ad7c1b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ad9c1c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0adbc1d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0addc1e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0adfc1f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ae1c200 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ae3c210 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ae5c220 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ae7c230 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ae9c240 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0aebc250 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0aedc260 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0aefc270 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0af1c280 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0af3c290 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0af5c2a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0af7c2b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0af9c2c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0afbc2d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0afdc2e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0affc2f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b01c300 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b03c310 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b05c320 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b07c330 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b09c340 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b0bc350 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b0dc360 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b0fc370 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b11c380 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b13c390 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b15c3a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b17c3b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b19c3c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b1bc3d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b1dc3e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b1fc3f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b21c400 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b23c410 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b25c420 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b27c430 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b29c440 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b2bc450 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b2dc460 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b2fc470 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b31c480 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b33c490 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b35c4a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b37c4b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b39c4c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b3bc4d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b3dc4e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b3fc4f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b41c500 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b43c510 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b45c520 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b47c530 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b49c540 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b4bc550 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b4dc560 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b4fc570 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b51c580 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b53c590 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b55c5a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b57c5b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b59c5c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b5bc5d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b5dc5e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b5fc5f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b61c600 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b63c610 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b65c620 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b67c630 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b69c640 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b6bc650 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b6dc660 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b6fc670 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b71c680 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b73c690 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b75c6a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b77c6b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b79c6c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b7bc6d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b7dc6e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b7fc6f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b81c700 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b83c710 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b85c720 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b87c730 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b89c740 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b8bc750 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b8dc760 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b8fc770 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b91c780 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b93c790 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b95c7a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b97c7b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b99c7c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b9bc7d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b9dc7e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b9fc7f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ba1c800 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ba3c810 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ba5c820 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ba7c830 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ba9c840 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0babc850 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0badc860 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bafc870 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bb1c880 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bb3c890 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bb5c8a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bb7c8b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bb9c8c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bbbc8d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bbdc8e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bbfc8f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bc1c900 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bc3c910 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bc5c920 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bc7c930 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bc9c940 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bcbc950 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bcdc960 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bcfc970 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bd1c980 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bd3c990 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bd5c9a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bd7c9b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bd9c9c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bdbc9d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bddc9e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bdfc9f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0be1ca00 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0be3ca10 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0be5ca20 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0be7ca30 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0be9ca40 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bebca50 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bedca60 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0befca70 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bf1ca80 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bf3ca90 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bf5caa0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bf7cab0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bf9cac0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bfbcad0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bfdcae0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bffcaf0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c01cb00 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c03cb10 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c05cb20 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c07cb30 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c09cb40 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c0bcb50 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c0dcb60 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c0fcb70 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c11cb80 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c13cb90 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c15cba0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c17cbb0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c19cbc0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c1bcbd0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c1dcbe0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c1fcbf0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c21cc00 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c23cc10 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c25cc20 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c27cc30 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c29cc40 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c2bcc50 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c2dcc60 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c2fcc70 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c31cc80 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c33cc90 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c35cca0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c37ccb0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c39ccc0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c3bccd0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c3dcce0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c3fccf0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c41cd00 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c43cd10 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c45cd20 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c47cd30 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c49cd40 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c4bcd50 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c4dcd60 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c4fcd70 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c51cd80 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c53cd90 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c55cda0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c57cdb0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c59cdc0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c5bcdd0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c5dcde0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c5fcdf0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c61ce00 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c63ce10 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c65ce20 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c67ce30 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c69ce40 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c6bce50 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c6dce60 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c6fce70 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c71ce80 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c73ce90 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c75cea0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c77ceb0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c79cec0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c7bced0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c7dcee0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c7fcef0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c81cf00 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c83cf10 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c85cf20 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c87cf30 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c89cf40 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c8bcf50 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c8dcf60 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c8fcf70 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c91cf80 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c93cf90 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c95cfa0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c97cfb0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c99cfc0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c9bcfd0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c9dcfe0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c9fcff0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ca1d000 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ca3d010 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ca5d020 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ca7d030 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ca9d040 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0cabd050 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0cadd060 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0cafd070 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0cb1d080 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0cb3d090 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0cb5d0a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0cb7d0b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0cb9d0c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0cbbd0d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0cbdd0e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0cbfd0f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0cc1d100 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0cc3d110 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0cc5d120 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0cc7d130 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0cc9d140 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ccbd150 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ccdd160 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ccfd170 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0cd1d180 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0cd3d190 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08635220 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08d7b1b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08d9b1c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08dbb1d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08ddb1e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08dfb1f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08e1b200 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08e3b210 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08e5b220 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08e7b230 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08e9b240 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08ebb250 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08edb260 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08efb270 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08f1b280 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08f3b290 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08f5b2a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08f7b2b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08f9b2c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08fbb2d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08fdb2e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08ffb2f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0901b300 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0903b310 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0905b320 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0907b330 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0909b340 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb090bb350 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb090db360 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb090fb370 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0911b380 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0913b390 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0915b3a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0917b3b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0919b3c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb091bb3d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb091db3e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb091fb3f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0921b400 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0923b410 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0925b420 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0927b430 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0929b440 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb092bb450 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb092db460 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb092fb470 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0931b480 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0933b490 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0935b4a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0937b4b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0939b4c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb093bb4d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb093db4e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb093fb4f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0941b500 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0943b510 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0945b520 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0947b530 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0949b540 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb094bb550 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb094db560 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb094fb570 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0951b580 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0953b590 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0955b5a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0957b5b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0959b5c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb095bb5d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb095db5e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb095fb5f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0961b600 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0963b610 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0965b620 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0967b630 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0969b640 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb096bb650 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb096db660 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb096fb670 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0971b680 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0973b690 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0975b6a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0977b6b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0979b6c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb097bb6d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb097db6e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb097fb6f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0981b700 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0983b710 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0985b720 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0987b730 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0989b740 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb098bb750 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb098db760 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb098fb770 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0991b780 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0993b790 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0995b7a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0997b7b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0999b7c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb099bb7d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb099db7e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb099fb7f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09a1b800 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09a3b810 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09a5b820 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09a7b830 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09a9b840 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09abb850 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09adb860 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09afb870 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09b1b880 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09b3b890 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09b5b8a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09b7b8b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09b9b8c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09bbb8d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09bdb8e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09bfb8f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09c1b900 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09c3b910 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09c5b920 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09c7b930 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09c9b940 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09cbb950 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09cdb960 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09cfb970 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09d1b980 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09d3b990 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09d5b9a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09d7b9b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09d9b9c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09dbb9d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09ddb9e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09dfb9f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09e1ba00 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09e3ba10 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09e5ba20 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09e7ba30 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09e9ba40 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09ebba50 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09edba60 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09efba70 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09f1ba80 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09f3ba90 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09f5baa0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09f7bab0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09f9bac0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09fbbad0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09fdbae0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09ffbaf0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a01bb00 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a03bb10 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a05bb20 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a07bb30 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a09bb40 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a0bbb50 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a0dbb60 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a0fbb70 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a11bb80 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a13bb90 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a15bba0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a17bbb0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a19bbc0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a1bbbd0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a1dbbe0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a1fbbf0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a21bc00 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a23bc10 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a25bc20 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a27bc30 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a29bc40 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a2bbc50 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a2dbc60 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a2fbc70 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a31bc80 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a33bc90 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a35bca0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a37bcb0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a39bcc0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a3bbcd0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a3dbce0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a3fbcf0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a41bd00 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a43bd10 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a45bd20 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a47bd30 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a49bd40 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a4bbd50 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a4dbd60 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a4fbd70 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a51bd80 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a53bd90 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a55bda0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a57bdb0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a59bdc0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a5bbdd0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a5dbde0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a5fbdf0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a61be00 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a63be10 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a65be20 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a67be30 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a69be40 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a6bbe50 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a6dbe60 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a6fbe70 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a71be80 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a73be90 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a75bea0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a77beb0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a79bec0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a7bbed0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a7dbee0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a7fbef0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a81bf00 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a83bf10 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a85bf20 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a87bf30 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a89bf40 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a8bbf50 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a8dbf60 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a8fbf70 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a91bf80 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a93bf90 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a95bfa0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a97bfb0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a99bfc0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a9bbfd0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a9dbfe0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a9fbff0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0aa1c000 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0aa3c010 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0aa5c020 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0aa7c030 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0aa9c040 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0aabc050 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0aadc060 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0aafc070 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ab1c080 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ab3c090 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ab5c0a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ab7c0b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ab9c0c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0abbc0d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0abdc0e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0abfc0f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ac1c100 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ac3c110 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ac5c120 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ac7c130 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ac9c140 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0acbc150 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0acdc160 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0acfc170 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ad1c180 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ad3c190 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ad5c1a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ad7c1b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ad9c1c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0adbc1d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0addc1e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0adfc1f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ae1c200 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ae3c210 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ae5c220 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ae7c230 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ae9c240 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0aebc250 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0aedc260 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0aefc270 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0af1c280 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0af3c290 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0af5c2a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0af7c2b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0af9c2c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0afbc2d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0afdc2e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0affc2f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b01c300 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b03c310 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b05c320 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b07c330 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b09c340 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b0bc350 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b0dc360 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b0fc370 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b11c380 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b13c390 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b15c3a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b17c3b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b19c3c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b1bc3d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b1dc3e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b1fc3f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b21c400 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b23c410 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b25c420 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b27c430 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b29c440 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b2bc450 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b2dc460 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b2fc470 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b31c480 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b33c490 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b35c4a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b37c4b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b39c4c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b3bc4d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b3dc4e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b3fc4f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b41c500 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b43c510 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b45c520 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b47c530 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b49c540 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b4bc550 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b4dc560 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b4fc570 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b51c580 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b53c590 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b55c5a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b57c5b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b59c5c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b5bc5d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b5dc5e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b5fc5f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b61c600 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b63c610 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b65c620 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b67c630 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b69c640 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b6bc650 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b6dc660 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b6fc670 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b71c680 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b73c690 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b75c6a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b77c6b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b79c6c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b7bc6d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b7dc6e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b7fc6f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b81c700 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b83c710 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b85c720 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b87c730 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b89c740 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b8bc750 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b8dc760 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b8fc770 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b91c780 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b93c790 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b95c7a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b97c7b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b99c7c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b9bc7d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b9dc7e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b9fc7f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ba1c800 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ba3c810 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ba5c820 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ba7c830 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ba9c840 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0babc850 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0badc860 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bafc870 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bb1c880 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bb3c890 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bb5c8a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bb7c8b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bb9c8c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bbbc8d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bbdc8e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bbfc8f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bc1c900 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bc3c910 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bc5c920 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bc7c930 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bc9c940 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bcbc950 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bcdc960 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bcfc970 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bd1c980 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bd3c990 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bd5c9a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bd7c9b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bd9c9c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bdbc9d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bddc9e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bdfc9f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0be1ca00 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0be3ca10 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0be5ca20 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0be7ca30 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0be9ca40 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bebca50 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bedca60 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0befca70 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bf1ca80 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bf3ca90 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bf5caa0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bf7cab0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bf9cac0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bfbcad0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bfdcae0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bffcaf0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c01cb00 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c03cb10 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c05cb20 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c07cb30 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c09cb40 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c0bcb50 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c0dcb60 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c0fcb70 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c11cb80 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c13cb90 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c15cba0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c17cbb0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c19cbc0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c1bcbd0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c1dcbe0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c1fcbf0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c21cc00 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c23cc10 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c25cc20 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c27cc30 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c29cc40 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c2bcc50 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c2dcc60 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c2fcc70 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c31cc80 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c33cc90 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c35cca0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c37ccb0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c39ccc0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c3bccd0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c3dcce0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c3fccf0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c41cd00 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c43cd10 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c45cd20 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c47cd30 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c49cd40 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c4bcd50 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c4dcd60 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c4fcd70 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c51cd80 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c53cd90 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c55cda0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c57cdb0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c59cdc0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c5bcdd0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c5dcde0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c5fcdf0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c61ce00 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c63ce10 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c65ce20 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c67ce30 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c69ce40 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c6bce50 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c6dce60 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c6fce70 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c71ce80 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c73ce90 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c75cea0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c77ceb0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c79cec0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c7bced0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c7dcee0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c7fcef0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c81cf00 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c83cf10 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c85cf20 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c87cf30 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c89cf40 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c8bcf50 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c8dcf60 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c8fcf70 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c91cf80 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c93cf90 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c95cfa0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c97cfb0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c99cfc0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c9bcfd0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c9dcfe0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c9fcff0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ca1d000 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ca3d010 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ca5d020 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ca7d030 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ca9d040 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0cabd050 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0cadd060 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0cafd070 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0cb1d080 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0cb3d090 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0cb5d0a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0cb7d0b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0cb9d0c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0cbbd0d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0cbdd0e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0cbfd0f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0cc1d100 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0cc3d110 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0cc5d120 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0cc7d130 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0cc9d140 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ccbd150 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ccdd160 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ccfd170 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0cd1d180 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0cd3d190 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb087cab30 for tiles in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m211\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Computing short-range forces (using 8 tiles and 32 / 32 cores) done.\n",
"[02:24:44\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Acceleration loop, direction 0...\n",
"[02:24:44\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Acceleration loop, direction 0 done.\n",
"[02:24:44\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Kick loop, direction 0...\n",
"[02:24:44\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Kick loop, direction 0 done.\n",
"[02:24:44\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Acceleration loop, direction 1...\n",
"[02:24:44\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Acceleration loop, direction 1 done.\n",
"[02:24:44\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Kick loop, direction 1...\n",
"[02:24:44\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Kick loop, direction 1 done.\n",
"[02:24:44\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Acceleration loop, direction 2...\n",
"[02:24:44\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Acceleration loop, direction 2 done.\n",
"[02:24:44\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Kick loop, direction 2...\n",
"[02:24:44\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Kick loop, direction 2 done.\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08c1b190 for g_pad in \u001b[38;5;227mpmcola.c\u001b[0;36m:\u001b[38;5;192mkick_pm_cola\u001b[0;36m:\u001b[0;32m592\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08d1b1a0 for pp in \u001b[38;5;227mpmcola.c\u001b[0;36m:\u001b[38;5;192mkick_pm_cola\u001b[0;36m:\u001b[0;32m598\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]====|Kicking particles (using 32 cores) done.\n",
"[02:24:44\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]====|Drifting particles (using 32 cores)...\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mndrift=5\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mnkick=5\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246maiDrift=0.287500\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246maKick=0.311250\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mafDrift=0.335000\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246malpha_p=0.476628\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246malpha_lpt_1=0.000000\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246malpha_lpt_2=0.000000\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246malpha_ext=0.000000\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Drift loop, direction 0...\n",
"[02:24:44\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Drift loop, direction 0 done.\n",
"[02:24:44\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Drift loop, direction 1...\n",
"[02:24:44\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Drift loop, direction 1 done.\n",
"[02:24:44\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Drift loop, direction 2...\n",
"[02:24:44\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Drift loop, direction 2 done.\n",
"[02:24:44\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]====|Drifting particles (using 32 cores) done.\n",
"[02:24:44\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]==|ModuleP3M: End P3M step 6/20, time_kick:0.311250, time_drift=0.335000.\n",
"[02:24:44\u001b[00m|\u001b[38;5;159mTIMER \u001b[00m]==|Step 6/20: Density: 8.131 CPU - 0.267 wallclock seconds used.\n",
"[02:24:44\u001b[00m|\u001b[38;5;159mTIMER \u001b[00m]==|Step 6/20: Potential: 0.830 CPU - 0.029 wallclock seconds used.\n",
"[02:24:44\u001b[00m|\u001b[38;5;159mTIMER \u001b[00m]==|Step 6/20: Accelerations (long-range): 0.644 CPU - 0.022 wallclock seconds used.\n",
"[02:24:44\u001b[00m|\u001b[38;5;159mTIMER \u001b[00m]==|Step 6/20: Accelerations (short-range): 2.635 CPU - 0.147 wallclock seconds used.\n",
"[02:24:44\u001b[00m|\u001b[38;5;159mTIMER \u001b[00m]==|Step 6/20: Kick: 0.427 CPU - 0.014 wallclock seconds used.\n",
"[02:24:44\u001b[00m|\u001b[38;5;159mTIMER \u001b[00m]==|Step 6/20: Drift: 0.000 CPU - 0.000 wallclock seconds used.\n",
"[02:24:44\u001b[00m|\u001b[38;5;159mTIMER \u001b[00m]==|Step 6/20: Inputs: 0.000 CPU - 0.000 wallclock seconds used.\n",
"[02:24:44\u001b[00m|\u001b[38;5;159mTIMER \u001b[00m]==|Step 6/20: Diagnostic: 0.000 CPU - 0.000 wallclock seconds used.\n",
"[02:24:44\u001b[00m|\u001b[38;5;159mTIMER \u001b[00m]==|Step 6/20: Outputs: 0.000 CPU - 0.000 wallclock seconds used.\n",
"[02:24:44\u001b[00m|\u001b[38;5;159mTIMER \u001b[00m]==|Step 6/20: Total Evolution: 12.666 CPU - 0.479 wallclock seconds used.\n",
"[02:24:44\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]==|ModuleP3M: Begin P3M step 7/20, time_kick:0.311250, time_drift=0.335000.\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]====|\u001b[38;5;246mGiven the available memory, 4095 threads could be allocated and 32 threads will be used in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel\u001b[0;36m:\u001b[0;32m347\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]====|\u001b[38;5;246mGiven the available memory, 4095 threads could be allocated and 32 threads will be used in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m73\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]====|Getting density contrast (using 32 cores and 32 arrays, parallel routine 1)...\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]======|\u001b[38;5;246mPerforming CiC binning...\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 0...\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148970000b60 for threadedDensity[7] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148988000b60 for threadedDensity[28] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148980000b60 for threadedDensity[11] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1489b8000b60 for threadedDensity[4] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 11...\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 4...\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1488dc000b60 for threadedDensity[17] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1488f8000b60 for threadedDensity[19] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 17...\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 19...\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148928000b60 for threadedDensity[20] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148950000b60 for threadedDensity[9] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 20...\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 9...\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148960000b60 for threadedDensity[13] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 28...\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 13...\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148908000b60 for threadedDensity[8] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148990000b60 for threadedDensity[21] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 8...\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 21...\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1488d0000b60 for threadedDensity[5] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148940000b60 for threadedDensity[27] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 5...\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 27...\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1489a0000b60 for threadedDensity[3] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148920000b60 for threadedDensity[12] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148978000b60 for threadedDensity[26] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 12...\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 26...\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 3...\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1488e0000b60 for threadedDensity[6] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148910000b60 for threadedDensity[23] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 6...\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 23...\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1489a8000b60 for threadedDensity[30] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148938000b60 for threadedDensity[18] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 30...\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 18...\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148918000b60 for threadedDensity[15] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1488e8000b60 for threadedDensity[2] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 15...\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 2...\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148930000b60 for threadedDensity[14] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148968000b60 for threadedDensity[10] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 14...\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 10...\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148948000b60 for threadedDensity[31] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1489b0000b60 for threadedDensity[1] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 31...\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 1...\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1488f0000b60 for threadedDensity[24] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148958000b60 for threadedDensity[22] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 24...\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 22...\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148900000b60 for threadedDensity[16] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1488d8000b60 for threadedDensity[29] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 16...\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 29...\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148998000b60 for threadedDensity[25] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 7...\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 25...\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 29 done.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 16 done.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 8 done.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 21 done.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 9 done.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 20 done.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 4 done.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 11 done.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 19 done.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 17 done.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 5 done.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 27 done.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 13 done.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 28 done.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 12 done.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 26 done.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 3 done.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 0 done.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 18 done.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 30 done.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 2 done.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 15 done.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 6 done.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 23 done.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 31 done.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 1 done.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 24 done.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 22 done.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 10 done.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 14 done.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 25 done.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 7 done.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]======|\u001b[38;5;246mPerforming CiC done.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]======|\u001b[38;5;246mPerforming CiC reduction...\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x1489b0000b60 for threadedDensity[1] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x1488e8000b60 for threadedDensity[2] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x1489a0000b60 for threadedDensity[3] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x1489b8000b60 for threadedDensity[4] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x1488d0000b60 for threadedDensity[5] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x1488e0000b60 for threadedDensity[6] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148970000b60 for threadedDensity[7] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148908000b60 for threadedDensity[8] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148950000b60 for threadedDensity[9] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148968000b60 for threadedDensity[10] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148980000b60 for threadedDensity[11] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148920000b60 for threadedDensity[12] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148960000b60 for threadedDensity[13] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148930000b60 for threadedDensity[14] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148918000b60 for threadedDensity[15] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148900000b60 for threadedDensity[16] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x1488dc000b60 for threadedDensity[17] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148938000b60 for threadedDensity[18] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x1488f8000b60 for threadedDensity[19] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148928000b60 for threadedDensity[20] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148990000b60 for threadedDensity[21] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148958000b60 for threadedDensity[22] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148910000b60 for threadedDensity[23] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x1488f0000b60 for threadedDensity[24] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148998000b60 for threadedDensity[25] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148978000b60 for threadedDensity[26] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148940000b60 for threadedDensity[27] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148988000b60 for threadedDensity[28] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x1488d8000b60 for threadedDensity[29] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x1489a8000b60 for threadedDensity[30] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148948000b60 for threadedDensity[31] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]======|\u001b[38;5;246mPerforming CiC reduction done.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]====|Getting density contrast (using 32 cores and 32 arrays, parallel routine 1) done.\n",
"[02:24:44\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]====|Getting gravitational potential, periodic boundary conditions (using 32 cores)...\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated memory (1081344 bytes) at 0x55cb08c1b190 for AUX in \u001b[38;5;227mpoisson_solvers.c\u001b[0;36m:\u001b[38;5;192msolve_poisson_DFT\u001b[0;36m:\u001b[0;32m106\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08c1b190 for AUX in \u001b[38;5;227mpoisson_solvers.c\u001b[0;36m:\u001b[38;5;192msolve_poisson_DFT\u001b[0;36m:\u001b[0;32m116\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]====|Getting gravitational potential, periodic boundary conditions (using 32 cores) done.\n",
"[02:24:44\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]====|Kicking particles (using 32 cores)...\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mnkick=6\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mndrift=6\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246maiKick=0.311250\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246maDrift=0.335000\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mafKick=0.358750\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mbeta_delta=-0.066008\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mbeta_lpt_1=0.000000\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mbeta_lpt_2=0.000000\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mbeta_ext=0.000000\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated memory (1048576 bytes) at 0x55cb08c1b190 for g_pad in \u001b[38;5;227mpmcola.c\u001b[0;36m:\u001b[38;5;192mkick_pm_cola\u001b[0;36m:\u001b[0;32m478\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated memory (393216 bytes) at 0x55cb08d1b1a0 for pp in \u001b[38;5;227mpmcola.c\u001b[0;36m:\u001b[38;5;192mkick_pm_cola\u001b[0;36m:\u001b[0;32m554\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Computing short-range forces (using 8 tiles and 32 / 32 cores)...\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (8192 bytes) at 0x55cb087c3290 for tiles in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m57\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb08635220 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb08d7b1b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb08d9b1c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb08dbb1d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb08ddb1e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb08dfb1f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb08e1b200 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb08e3b210 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb08e5b220 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb08e7b230 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb08e9b240 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb08ebb250 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb08edb260 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb08efb270 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb08f1b280 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb08f3b290 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb08f5b2a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb08f7b2b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb08f9b2c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb08fbb2d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb08fdb2e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb08ffb2f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0901b300 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0903b310 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0905b320 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0907b330 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0909b340 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb090bb350 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb090db360 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb090fb370 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0911b380 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0913b390 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0915b3a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0917b3b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0919b3c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb091bb3d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb091db3e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb091fb3f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0921b400 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0923b410 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0925b420 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0927b430 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0929b440 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb092bb450 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb092db460 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb092fb470 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0931b480 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0933b490 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0935b4a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0937b4b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0939b4c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb093bb4d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb093db4e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb093fb4f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0941b500 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0943b510 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0945b520 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0947b530 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0949b540 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb094bb550 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb094db560 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb094fb570 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0951b580 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0953b590 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0955b5a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0957b5b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0959b5c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb095bb5d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb095db5e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb095fb5f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0961b600 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0963b610 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0965b620 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0967b630 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0969b640 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb096bb650 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb096db660 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb096fb670 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0971b680 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0973b690 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0975b6a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0977b6b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0979b6c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb097bb6d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb097db6e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb097fb6f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0981b700 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0983b710 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0985b720 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0987b730 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0989b740 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb098bb750 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb098db760 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb098fb770 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0991b780 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0993b790 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0995b7a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0997b7b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0999b7c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb099bb7d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb099db7e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb099fb7f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09a1b800 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09a3b810 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09a5b820 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09a7b830 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09a9b840 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09abb850 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09adb860 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09afb870 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09b1b880 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09b3b890 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09b5b8a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09b7b8b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09b9b8c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09bbb8d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09bdb8e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09bfb8f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09c1b900 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09c3b910 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09c5b920 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09c7b930 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09c9b940 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09cbb950 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09cdb960 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09cfb970 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09d1b980 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09d3b990 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09d5b9a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09d7b9b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09d9b9c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09dbb9d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09ddb9e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09dfb9f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09e1ba00 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09e3ba10 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09e5ba20 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09e7ba30 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09e9ba40 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09ebba50 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09edba60 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09efba70 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09f1ba80 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09f3ba90 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09f5baa0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09f7bab0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09f9bac0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09fbbad0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09fdbae0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09ffbaf0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a01bb00 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a03bb10 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a05bb20 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a07bb30 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a09bb40 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a0bbb50 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a0dbb60 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a0fbb70 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a11bb80 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a13bb90 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a15bba0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a17bbb0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a19bbc0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a1bbbd0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a1dbbe0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a1fbbf0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a21bc00 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a23bc10 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a25bc20 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a27bc30 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a29bc40 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a2bbc50 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a2dbc60 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a2fbc70 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a31bc80 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a33bc90 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a35bca0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a37bcb0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a39bcc0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a3bbcd0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a3dbce0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a3fbcf0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a41bd00 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a43bd10 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a45bd20 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a47bd30 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a49bd40 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a4bbd50 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a4dbd60 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a4fbd70 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a51bd80 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a53bd90 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a55bda0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a57bdb0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a59bdc0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a5bbdd0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a5dbde0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a5fbdf0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a61be00 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a63be10 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a65be20 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a67be30 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a69be40 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a6bbe50 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a6dbe60 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a6fbe70 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a71be80 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a73be90 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a75bea0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a77beb0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a79bec0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a7bbed0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a7dbee0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a7fbef0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a81bf00 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a83bf10 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a85bf20 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a87bf30 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a89bf40 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a8bbf50 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a8dbf60 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a8fbf70 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a91bf80 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a93bf90 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a95bfa0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a97bfb0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a99bfc0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a9bbfd0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a9dbfe0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a9fbff0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0aa1c000 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0aa3c010 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0aa5c020 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0aa7c030 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0aa9c040 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0aabc050 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0aadc060 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0aafc070 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ab1c080 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ab3c090 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ab5c0a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ab7c0b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ab9c0c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0abbc0d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0abdc0e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0abfc0f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ac1c100 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ac3c110 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ac5c120 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ac7c130 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ac9c140 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0acbc150 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0acdc160 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0acfc170 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ad1c180 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ad3c190 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ad5c1a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ad7c1b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ad9c1c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0adbc1d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0addc1e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0adfc1f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ae1c200 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ae3c210 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ae5c220 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ae7c230 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ae9c240 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0aebc250 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0aedc260 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0aefc270 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0af1c280 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0af3c290 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0af5c2a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0af7c2b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0af9c2c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0afbc2d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0afdc2e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0affc2f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b01c300 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b03c310 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b05c320 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b07c330 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b09c340 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b0bc350 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b0dc360 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b0fc370 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b11c380 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b13c390 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b15c3a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b17c3b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b19c3c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b1bc3d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b1dc3e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b1fc3f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b21c400 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b23c410 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b25c420 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b27c430 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b29c440 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b2bc450 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b2dc460 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b2fc470 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b31c480 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b33c490 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b35c4a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b37c4b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b39c4c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b3bc4d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b3dc4e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b3fc4f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b41c500 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b43c510 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b45c520 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b47c530 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b49c540 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b4bc550 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b4dc560 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b4fc570 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b51c580 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b53c590 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b55c5a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b57c5b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b59c5c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b5bc5d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b5dc5e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b5fc5f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b61c600 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b63c610 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b65c620 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b67c630 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b69c640 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b6bc650 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b6dc660 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b6fc670 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b71c680 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b73c690 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b75c6a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b77c6b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b79c6c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b7bc6d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b7dc6e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b7fc6f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b81c700 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b83c710 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b85c720 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b87c730 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b89c740 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b8bc750 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b8dc760 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b8fc770 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b91c780 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b93c790 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b95c7a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b97c7b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b99c7c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b9bc7d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b9dc7e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b9fc7f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ba1c800 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ba3c810 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ba5c820 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ba7c830 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ba9c840 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0babc850 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0badc860 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bafc870 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bb1c880 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bb3c890 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bb5c8a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bb7c8b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bb9c8c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bbbc8d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bbdc8e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bbfc8f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bc1c900 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bc3c910 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bc5c920 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bc7c930 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bc9c940 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bcbc950 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bcdc960 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bcfc970 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bd1c980 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bd3c990 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bd5c9a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bd7c9b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bd9c9c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bdbc9d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bddc9e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bdfc9f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0be1ca00 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0be3ca10 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0be5ca20 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0be7ca30 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0be9ca40 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bebca50 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bedca60 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0befca70 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bf1ca80 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bf3ca90 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bf5caa0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bf7cab0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bf9cac0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bfbcad0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bfdcae0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bffcaf0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c01cb00 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c03cb10 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c05cb20 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c07cb30 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c09cb40 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c0bcb50 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c0dcb60 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c0fcb70 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c11cb80 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c13cb90 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c15cba0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c17cbb0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c19cbc0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c1bcbd0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c1dcbe0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c1fcbf0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c21cc00 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c23cc10 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c25cc20 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c27cc30 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c29cc40 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c2bcc50 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c2dcc60 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c2fcc70 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c31cc80 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c33cc90 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c35cca0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c37ccb0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c39ccc0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c3bccd0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c3dcce0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c3fccf0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c41cd00 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c43cd10 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c45cd20 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c47cd30 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c49cd40 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c4bcd50 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c4dcd60 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c4fcd70 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c51cd80 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c53cd90 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c55cda0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c57cdb0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c59cdc0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c5bcdd0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c5dcde0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c5fcdf0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c61ce00 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c63ce10 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c65ce20 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c67ce30 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c69ce40 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c6bce50 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c6dce60 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c6fce70 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c71ce80 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c73ce90 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c75cea0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c77ceb0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c79cec0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c7bced0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c7dcee0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c7fcef0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c81cf00 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c83cf10 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c85cf20 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c87cf30 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c89cf40 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c8bcf50 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c8dcf60 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c8fcf70 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c91cf80 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c93cf90 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c95cfa0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c97cfb0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c99cfc0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c9bcfd0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c9dcfe0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c9fcff0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ca1d000 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ca3d010 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ca5d020 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ca7d030 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ca9d040 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0cabd050 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0cadd060 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0cafd070 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0cb1d080 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0cb3d090 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0cb5d0a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0cb7d0b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0cb9d0c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0cbbd0d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0cbdd0e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0cbfd0f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0cc1d100 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0cc3d110 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0cc5d120 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0cc7d130 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0cc9d140 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ccbd150 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ccdd160 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ccfd170 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0cd1d180 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0cd3d190 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08635220 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08d7b1b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08d9b1c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08dbb1d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08ddb1e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08dfb1f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08e1b200 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08e3b210 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08e5b220 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08e7b230 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08e9b240 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08ebb250 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08edb260 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08efb270 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08f1b280 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08f3b290 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08f5b2a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08f7b2b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08f9b2c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08fbb2d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08fdb2e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08ffb2f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0901b300 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0903b310 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0905b320 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0907b330 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0909b340 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb090bb350 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb090db360 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb090fb370 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0911b380 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0913b390 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0915b3a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0917b3b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0919b3c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb091bb3d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb091db3e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb091fb3f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0921b400 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0923b410 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0925b420 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0927b430 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0929b440 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb092bb450 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb092db460 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb092fb470 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0931b480 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0933b490 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0935b4a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0937b4b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0939b4c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb093bb4d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb093db4e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb093fb4f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0941b500 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0943b510 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0945b520 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0947b530 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0949b540 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb094bb550 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb094db560 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb094fb570 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0951b580 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0953b590 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0955b5a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0957b5b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0959b5c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb095bb5d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb095db5e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb095fb5f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0961b600 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0963b610 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0965b620 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0967b630 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0969b640 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb096bb650 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb096db660 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb096fb670 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0971b680 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0973b690 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0975b6a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0977b6b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0979b6c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb097bb6d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb097db6e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb097fb6f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0981b700 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0983b710 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0985b720 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0987b730 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0989b740 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb098bb750 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb098db760 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb098fb770 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0991b780 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0993b790 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0995b7a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0997b7b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0999b7c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb099bb7d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb099db7e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb099fb7f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09a1b800 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09a3b810 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09a5b820 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09a7b830 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09a9b840 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09abb850 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09adb860 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09afb870 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09b1b880 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09b3b890 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09b5b8a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09b7b8b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09b9b8c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09bbb8d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09bdb8e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09bfb8f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09c1b900 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09c3b910 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09c5b920 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09c7b930 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09c9b940 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09cbb950 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09cdb960 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09cfb970 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09d1b980 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09d3b990 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09d5b9a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09d7b9b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09d9b9c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09dbb9d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09ddb9e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09dfb9f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09e1ba00 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09e3ba10 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09e5ba20 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09e7ba30 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09e9ba40 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09ebba50 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09edba60 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09efba70 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09f1ba80 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09f3ba90 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09f5baa0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09f7bab0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09f9bac0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09fbbad0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09fdbae0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09ffbaf0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a01bb00 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a03bb10 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a05bb20 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a07bb30 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a09bb40 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a0bbb50 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a0dbb60 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a0fbb70 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a11bb80 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a13bb90 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a15bba0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a17bbb0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a19bbc0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a1bbbd0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a1dbbe0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a1fbbf0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a21bc00 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a23bc10 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a25bc20 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a27bc30 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a29bc40 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a2bbc50 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a2dbc60 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a2fbc70 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a31bc80 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a33bc90 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a35bca0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a37bcb0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a39bcc0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a3bbcd0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a3dbce0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a3fbcf0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a41bd00 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a43bd10 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a45bd20 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a47bd30 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a49bd40 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a4bbd50 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a4dbd60 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a4fbd70 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a51bd80 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a53bd90 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a55bda0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a57bdb0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a59bdc0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a5bbdd0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a5dbde0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a5fbdf0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a61be00 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a63be10 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a65be20 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a67be30 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a69be40 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a6bbe50 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a6dbe60 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a6fbe70 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a71be80 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a73be90 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a75bea0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a77beb0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a79bec0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a7bbed0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a7dbee0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a7fbef0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a81bf00 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a83bf10 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a85bf20 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a87bf30 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a89bf40 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a8bbf50 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a8dbf60 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a8fbf70 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a91bf80 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a93bf90 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a95bfa0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a97bfb0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a99bfc0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a9bbfd0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a9dbfe0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a9fbff0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0aa1c000 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0aa3c010 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0aa5c020 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0aa7c030 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0aa9c040 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0aabc050 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0aadc060 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0aafc070 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ab1c080 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ab3c090 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ab5c0a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ab7c0b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ab9c0c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0abbc0d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0abdc0e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0abfc0f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ac1c100 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ac3c110 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ac5c120 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ac7c130 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ac9c140 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0acbc150 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0acdc160 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0acfc170 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ad1c180 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ad3c190 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ad5c1a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ad7c1b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ad9c1c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0adbc1d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0addc1e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0adfc1f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ae1c200 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ae3c210 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ae5c220 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ae7c230 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ae9c240 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0aebc250 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0aedc260 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0aefc270 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0af1c280 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0af3c290 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0af5c2a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0af7c2b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0af9c2c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0afbc2d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0afdc2e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0affc2f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b01c300 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b03c310 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b05c320 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b07c330 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b09c340 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b0bc350 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b0dc360 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b0fc370 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b11c380 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b13c390 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b15c3a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b17c3b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b19c3c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b1bc3d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b1dc3e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b1fc3f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b21c400 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b23c410 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b25c420 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b27c430 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b29c440 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b2bc450 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b2dc460 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b2fc470 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b31c480 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b33c490 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b35c4a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b37c4b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b39c4c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b3bc4d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b3dc4e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b3fc4f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b41c500 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b43c510 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b45c520 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b47c530 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b49c540 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b4bc550 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b4dc560 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b4fc570 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b51c580 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b53c590 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b55c5a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b57c5b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b59c5c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b5bc5d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b5dc5e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b5fc5f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b61c600 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b63c610 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b65c620 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b67c630 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b69c640 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b6bc650 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b6dc660 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b6fc670 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b71c680 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b73c690 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b75c6a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b77c6b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b79c6c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b7bc6d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b7dc6e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b7fc6f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b81c700 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b83c710 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b85c720 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b87c730 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b89c740 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b8bc750 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b8dc760 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b8fc770 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b91c780 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b93c790 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b95c7a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b97c7b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b99c7c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b9bc7d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b9dc7e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b9fc7f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ba1c800 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ba3c810 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ba5c820 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ba7c830 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ba9c840 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0babc850 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0badc860 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bafc870 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bb1c880 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bb3c890 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bb5c8a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bb7c8b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bb9c8c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bbbc8d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bbdc8e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bbfc8f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bc1c900 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bc3c910 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bc5c920 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bc7c930 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bc9c940 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bcbc950 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bcdc960 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bcfc970 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bd1c980 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bd3c990 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bd5c9a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bd7c9b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bd9c9c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bdbc9d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bddc9e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bdfc9f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0be1ca00 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0be3ca10 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0be5ca20 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0be7ca30 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0be9ca40 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bebca50 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bedca60 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0befca70 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bf1ca80 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bf3ca90 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bf5caa0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bf7cab0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bf9cac0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bfbcad0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bfdcae0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bffcaf0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c01cb00 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c03cb10 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c05cb20 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c07cb30 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c09cb40 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c0bcb50 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c0dcb60 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c0fcb70 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c11cb80 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c13cb90 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c15cba0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c17cbb0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c19cbc0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c1bcbd0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c1dcbe0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c1fcbf0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c21cc00 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c23cc10 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c25cc20 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c27cc30 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c29cc40 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c2bcc50 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c2dcc60 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c2fcc70 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c31cc80 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c33cc90 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c35cca0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c37ccb0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c39ccc0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c3bccd0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c3dcce0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c3fccf0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c41cd00 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c43cd10 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c45cd20 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c47cd30 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c49cd40 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c4bcd50 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c4dcd60 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c4fcd70 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c51cd80 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c53cd90 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c55cda0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c57cdb0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c59cdc0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c5bcdd0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c5dcde0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c5fcdf0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c61ce00 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c63ce10 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c65ce20 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c67ce30 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c69ce40 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c6bce50 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c6dce60 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c6fce70 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c71ce80 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c73ce90 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c75cea0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c77ceb0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c79cec0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c7bced0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c7dcee0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c7fcef0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c81cf00 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c83cf10 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c85cf20 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c87cf30 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c89cf40 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c8bcf50 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c8dcf60 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c8fcf70 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c91cf80 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c93cf90 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c95cfa0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c97cfb0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c99cfc0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c9bcfd0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c9dcfe0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c9fcff0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ca1d000 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ca3d010 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ca5d020 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ca7d030 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ca9d040 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0cabd050 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0cadd060 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0cafd070 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0cb1d080 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0cb3d090 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0cb5d0a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0cb7d0b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0cb9d0c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0cbbd0d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0cbdd0e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0cbfd0f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0cc1d100 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0cc3d110 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0cc5d120 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0cc7d130 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0cc9d140 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ccbd150 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ccdd160 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ccfd170 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0cd1d180 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0cd3d190 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb087c3290 for tiles in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m211\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Computing short-range forces (using 8 tiles and 32 / 32 cores) done.\n",
"[02:24:44\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Acceleration loop, direction 0...\n",
"[02:24:44\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Acceleration loop, direction 0 done.\n",
"[02:24:44\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Kick loop, direction 0...\n",
"[02:24:44\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Kick loop, direction 0 done.\n",
"[02:24:44\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Acceleration loop, direction 1...\n",
"[02:24:44\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Acceleration loop, direction 1 done.\n",
"[02:24:44\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Kick loop, direction 1...\n",
"[02:24:44\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Kick loop, direction 1 done.\n",
"[02:24:44\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Acceleration loop, direction 2...\n",
"[02:24:44\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Acceleration loop, direction 2 done.\n",
"[02:24:44\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Kick loop, direction 2...\n",
"[02:24:44\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Kick loop, direction 2 done.\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08c1b190 for g_pad in \u001b[38;5;227mpmcola.c\u001b[0;36m:\u001b[38;5;192mkick_pm_cola\u001b[0;36m:\u001b[0;32m592\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08d1b1a0 for pp in \u001b[38;5;227mpmcola.c\u001b[0;36m:\u001b[38;5;192mkick_pm_cola\u001b[0;36m:\u001b[0;32m598\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]====|Kicking particles (using 32 cores) done.\n",
"[02:24:44\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]====|Drifting particles (using 32 cores)...\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mndrift=6\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mnkick=6\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246maiDrift=0.335000\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246maKick=0.358750\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mafDrift=0.382500\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246malpha_p=0.378592\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246malpha_lpt_1=0.000000\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246malpha_lpt_2=0.000000\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246malpha_ext=0.000000\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Drift loop, direction 0...\n",
"[02:24:44\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Drift loop, direction 0 done.\n",
"[02:24:44\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Drift loop, direction 1...\n",
"[02:24:44\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Drift loop, direction 1 done.\n",
"[02:24:44\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Drift loop, direction 2...\n",
"[02:24:44\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Drift loop, direction 2 done.\n",
"[02:24:44\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]====|Drifting particles (using 32 cores) done.\n",
"[02:24:44\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]==|ModuleP3M: End P3M step 7/20, time_kick:0.358750, time_drift=0.382500.\n",
"[02:24:44\u001b[00m|\u001b[38;5;159mTIMER \u001b[00m]==|Step 7/20: Density: 0.970 CPU - 0.031 wallclock seconds used.\n",
"[02:24:44\u001b[00m|\u001b[38;5;159mTIMER \u001b[00m]==|Step 7/20: Potential: 0.461 CPU - 0.020 wallclock seconds used.\n",
"[02:24:44\u001b[00m|\u001b[38;5;159mTIMER \u001b[00m]==|Step 7/20: Accelerations (long-range): 0.149 CPU - 0.004 wallclock seconds used.\n",
"[02:24:44\u001b[00m|\u001b[38;5;159mTIMER \u001b[00m]==|Step 7/20: Accelerations (short-range): 1.893 CPU - 0.130 wallclock seconds used.\n",
"[02:24:44\u001b[00m|\u001b[38;5;159mTIMER \u001b[00m]==|Step 7/20: Kick: 0.000 CPU - 0.001 wallclock seconds used.\n",
"[02:24:44\u001b[00m|\u001b[38;5;159mTIMER \u001b[00m]==|Step 7/20: Drift: 0.000 CPU - 0.000 wallclock seconds used.\n",
"[02:24:44\u001b[00m|\u001b[38;5;159mTIMER \u001b[00m]==|Step 7/20: Inputs: 0.000 CPU - 0.000 wallclock seconds used.\n",
"[02:24:44\u001b[00m|\u001b[38;5;159mTIMER \u001b[00m]==|Step 7/20: Diagnostic: 0.000 CPU - 0.000 wallclock seconds used.\n",
"[02:24:44\u001b[00m|\u001b[38;5;159mTIMER \u001b[00m]==|Step 7/20: Outputs: 0.000 CPU - 0.000 wallclock seconds used.\n",
"[02:24:44\u001b[00m|\u001b[38;5;159mTIMER \u001b[00m]==|Step 7/20: Total Evolution: 3.472 CPU - 0.186 wallclock seconds used.\n",
"[02:24:44\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]==|ModuleP3M: Begin P3M step 8/20, time_kick:0.358750, time_drift=0.382500.\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]====|\u001b[38;5;246mGiven the available memory, 4095 threads could be allocated and 32 threads will be used in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel\u001b[0;36m:\u001b[0;32m347\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]====|\u001b[38;5;246mGiven the available memory, 4095 threads could be allocated and 32 threads will be used in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m73\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]====|Getting density contrast (using 32 cores and 32 arrays, parallel routine 1)...\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]======|\u001b[38;5;246mPerforming CiC binning...\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 0...\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1489a0000b60 for threadedDensity[3] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 3...\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148988000b60 for threadedDensity[28] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148960000b60 for threadedDensity[13] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 28...\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 13...\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1488dc000b60 for threadedDensity[17] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1488f8000b60 for threadedDensity[19] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 17...\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 19...\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1489b8000b60 for threadedDensity[4] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148980000b60 for threadedDensity[11] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 4...\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 11...\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148940000b60 for threadedDensity[27] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148910000b60 for threadedDensity[23] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1488e0000b60 for threadedDensity[6] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 23...\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 6...\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148928000b60 for threadedDensity[20] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148950000b60 for threadedDensity[9] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 20...\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 9...\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148990000b60 for threadedDensity[21] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148908000b60 for threadedDensity[8] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 21...\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 8...\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1488d0000b60 for threadedDensity[5] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 27...\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 5...\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148920000b60 for threadedDensity[12] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148978000b60 for threadedDensity[26] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 12...\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 26...\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1489a8000b60 for threadedDensity[30] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148930000b60 for threadedDensity[14] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 30...\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 14...\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148918000b60 for threadedDensity[15] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1488e8000b60 for threadedDensity[2] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 15...\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 2...\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1488f0000b60 for threadedDensity[24] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148958000b60 for threadedDensity[22] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 24...\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 22...\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148948000b60 for threadedDensity[31] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1489b0000b60 for threadedDensity[1] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 31...\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 1...\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148968000b60 for threadedDensity[10] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148998000b60 for threadedDensity[25] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148970000b60 for threadedDensity[7] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 25...\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 7...\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 10...\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1488d8000b60 for threadedDensity[29] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148900000b60 for threadedDensity[16] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 29...\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 16...\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148938000b60 for threadedDensity[18] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 18...\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 5 done.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 27 done.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 21 done.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 8 done.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 9 done.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 20 done.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 4 done.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 11 done.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 17 done.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 19 done.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 28 done.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 13 done.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 12 done.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 26 done.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 3 done.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 0 done.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 30 done.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 14 done.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 2 done.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 15 done.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 10 done.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 31 done.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 1 done.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 22 done.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 24 done.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 16 done.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 29 done.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 18 done.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 6 done.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 7 done.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 25 done.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 23 done.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]======|\u001b[38;5;246mPerforming CiC done.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]======|\u001b[38;5;246mPerforming CiC reduction...\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x1489b0000b60 for threadedDensity[1] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x1488e8000b60 for threadedDensity[2] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x1489a0000b60 for threadedDensity[3] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x1489b8000b60 for threadedDensity[4] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x1488d0000b60 for threadedDensity[5] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x1488e0000b60 for threadedDensity[6] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148970000b60 for threadedDensity[7] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148908000b60 for threadedDensity[8] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148950000b60 for threadedDensity[9] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148968000b60 for threadedDensity[10] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148980000b60 for threadedDensity[11] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148920000b60 for threadedDensity[12] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148960000b60 for threadedDensity[13] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148930000b60 for threadedDensity[14] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148918000b60 for threadedDensity[15] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148900000b60 for threadedDensity[16] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x1488dc000b60 for threadedDensity[17] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148938000b60 for threadedDensity[18] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x1488f8000b60 for threadedDensity[19] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148928000b60 for threadedDensity[20] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148990000b60 for threadedDensity[21] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148958000b60 for threadedDensity[22] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148910000b60 for threadedDensity[23] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x1488f0000b60 for threadedDensity[24] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148998000b60 for threadedDensity[25] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148978000b60 for threadedDensity[26] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148940000b60 for threadedDensity[27] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148988000b60 for threadedDensity[28] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x1488d8000b60 for threadedDensity[29] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x1489a8000b60 for threadedDensity[30] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148948000b60 for threadedDensity[31] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]======|\u001b[38;5;246mPerforming CiC reduction done.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]====|Getting density contrast (using 32 cores and 32 arrays, parallel routine 1) done.\n",
"[02:24:44\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]====|Getting gravitational potential, periodic boundary conditions (using 32 cores)...\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated memory (1081344 bytes) at 0x55cb08c1b190 for AUX in \u001b[38;5;227mpoisson_solvers.c\u001b[0;36m:\u001b[38;5;192msolve_poisson_DFT\u001b[0;36m:\u001b[0;32m106\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08c1b190 for AUX in \u001b[38;5;227mpoisson_solvers.c\u001b[0;36m:\u001b[38;5;192msolve_poisson_DFT\u001b[0;36m:\u001b[0;32m116\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]====|Getting gravitational potential, periodic boundary conditions (using 32 cores) done.\n",
"[02:24:44\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]====|Kicking particles (using 32 cores)...\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mnkick=7\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mndrift=7\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246maiKick=0.358750\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246maDrift=0.382500\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mafKick=0.406250\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mbeta_delta=-0.060637\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mbeta_lpt_1=0.000000\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mbeta_lpt_2=0.000000\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mbeta_ext=0.000000\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated memory (1048576 bytes) at 0x55cb08c1b190 for g_pad in \u001b[38;5;227mpmcola.c\u001b[0;36m:\u001b[38;5;192mkick_pm_cola\u001b[0;36m:\u001b[0;32m478\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated memory (393216 bytes) at 0x55cb08d1b1a0 for pp in \u001b[38;5;227mpmcola.c\u001b[0;36m:\u001b[38;5;192mkick_pm_cola\u001b[0;36m:\u001b[0;32m554\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Computing short-range forces (using 8 tiles and 32 / 32 cores)...\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (8192 bytes) at 0x55cb088fbf80 for tiles in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m57\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb08635220 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb08d7b1b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb08d9b1c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb08dbb1d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb08ddb1e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb08dfb1f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb08e1b200 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb08e3b210 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb08e5b220 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb08e7b230 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb08e9b240 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb08ebb250 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb08edb260 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb08efb270 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb08f1b280 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb08f3b290 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb08f5b2a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb08f7b2b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb08f9b2c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb08fbb2d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb08fdb2e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb08ffb2f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0901b300 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0903b310 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0905b320 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0907b330 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0909b340 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb090bb350 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb090db360 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb090fb370 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0911b380 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0913b390 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0915b3a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0917b3b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0919b3c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb091bb3d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb091db3e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb091fb3f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0921b400 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0923b410 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0925b420 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0927b430 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0929b440 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb092bb450 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb092db460 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb092fb470 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0931b480 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0933b490 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0935b4a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0937b4b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0939b4c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb093bb4d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb093db4e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb093fb4f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0941b500 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0943b510 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0945b520 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0947b530 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0949b540 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb094bb550 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb094db560 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb094fb570 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0951b580 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0953b590 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0955b5a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0957b5b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0959b5c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb095bb5d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb095db5e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb095fb5f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0961b600 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0963b610 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0965b620 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0967b630 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0969b640 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb096bb650 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb096db660 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb096fb670 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0971b680 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0973b690 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0975b6a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0977b6b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0979b6c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb097bb6d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb097db6e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb097fb6f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0981b700 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0983b710 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0985b720 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0987b730 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0989b740 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb098bb750 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb098db760 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb098fb770 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0991b780 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0993b790 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0995b7a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0997b7b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0999b7c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb099bb7d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb099db7e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb099fb7f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09a1b800 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09a3b810 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09a5b820 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09a7b830 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09a9b840 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09abb850 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09adb860 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09afb870 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09b1b880 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09b3b890 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09b5b8a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09b7b8b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09b9b8c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09bbb8d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09bdb8e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09bfb8f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09c1b900 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09c3b910 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09c5b920 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09c7b930 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09c9b940 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09cbb950 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09cdb960 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09cfb970 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09d1b980 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09d3b990 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09d5b9a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09d7b9b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09d9b9c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09dbb9d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09ddb9e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09dfb9f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09e1ba00 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09e3ba10 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09e5ba20 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09e7ba30 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09e9ba40 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09ebba50 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09edba60 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09efba70 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09f1ba80 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09f3ba90 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09f5baa0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09f7bab0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09f9bac0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09fbbad0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09fdbae0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09ffbaf0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a01bb00 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a03bb10 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a05bb20 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a07bb30 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a09bb40 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a0bbb50 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a0dbb60 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a0fbb70 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a11bb80 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a13bb90 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a15bba0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a17bbb0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a19bbc0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a1bbbd0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a1dbbe0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a1fbbf0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a21bc00 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a23bc10 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a25bc20 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a27bc30 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a29bc40 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a2bbc50 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a2dbc60 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a2fbc70 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a31bc80 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a33bc90 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a35bca0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a37bcb0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a39bcc0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a3bbcd0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a3dbce0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a3fbcf0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a41bd00 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a43bd10 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a45bd20 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a47bd30 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a49bd40 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a4bbd50 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a4dbd60 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a4fbd70 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a51bd80 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a53bd90 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a55bda0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a57bdb0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a59bdc0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a5bbdd0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a5dbde0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a5fbdf0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a61be00 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a63be10 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a65be20 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a67be30 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a69be40 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a6bbe50 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a6dbe60 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a6fbe70 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a71be80 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a73be90 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a75bea0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a77beb0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a79bec0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a7bbed0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a7dbee0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a7fbef0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a81bf00 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a83bf10 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a85bf20 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a87bf30 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a89bf40 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a8bbf50 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a8dbf60 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a8fbf70 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a91bf80 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a93bf90 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a95bfa0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a97bfb0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a99bfc0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a9bbfd0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a9dbfe0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a9fbff0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0aa1c000 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0aa3c010 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0aa5c020 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0aa7c030 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0aa9c040 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0aabc050 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0aadc060 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0aafc070 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ab1c080 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ab3c090 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ab5c0a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ab7c0b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ab9c0c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0abbc0d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0abdc0e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0abfc0f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ac1c100 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ac3c110 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ac5c120 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ac7c130 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ac9c140 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0acbc150 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0acdc160 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0acfc170 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ad1c180 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ad3c190 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ad5c1a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ad7c1b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ad9c1c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0adbc1d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0addc1e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0adfc1f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ae1c200 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ae3c210 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ae5c220 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ae7c230 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ae9c240 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0aebc250 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0aedc260 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0aefc270 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0af1c280 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0af3c290 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0af5c2a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0af7c2b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0af9c2c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0afbc2d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0afdc2e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0affc2f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b01c300 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b03c310 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b05c320 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b07c330 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b09c340 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b0bc350 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b0dc360 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b0fc370 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b11c380 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b13c390 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b15c3a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b17c3b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b19c3c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b1bc3d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b1dc3e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b1fc3f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b21c400 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b23c410 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b25c420 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b27c430 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b29c440 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b2bc450 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b2dc460 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b2fc470 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b31c480 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b33c490 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b35c4a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b37c4b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b39c4c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b3bc4d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b3dc4e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b3fc4f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b41c500 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b43c510 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b45c520 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b47c530 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b49c540 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b4bc550 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b4dc560 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b4fc570 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b51c580 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b53c590 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b55c5a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b57c5b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b59c5c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b5bc5d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b5dc5e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b5fc5f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b61c600 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b63c610 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b65c620 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b67c630 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b69c640 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b6bc650 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b6dc660 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b6fc670 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b71c680 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b73c690 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b75c6a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b77c6b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b79c6c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b7bc6d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b7dc6e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b7fc6f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b81c700 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b83c710 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b85c720 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b87c730 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b89c740 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b8bc750 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b8dc760 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b8fc770 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b91c780 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b93c790 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b95c7a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b97c7b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b99c7c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b9bc7d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b9dc7e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b9fc7f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ba1c800 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ba3c810 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ba5c820 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ba7c830 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ba9c840 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0babc850 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0badc860 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bafc870 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bb1c880 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bb3c890 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bb5c8a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bb7c8b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bb9c8c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bbbc8d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bbdc8e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bbfc8f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bc1c900 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bc3c910 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bc5c920 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bc7c930 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bc9c940 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bcbc950 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bcdc960 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bcfc970 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bd1c980 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bd3c990 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bd5c9a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bd7c9b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bd9c9c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bdbc9d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bddc9e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bdfc9f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0be1ca00 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0be3ca10 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0be5ca20 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0be7ca30 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0be9ca40 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bebca50 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bedca60 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0befca70 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bf1ca80 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bf3ca90 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bf5caa0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bf7cab0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bf9cac0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bfbcad0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bfdcae0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bffcaf0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c01cb00 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c03cb10 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c05cb20 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c07cb30 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c09cb40 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c0bcb50 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c0dcb60 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c0fcb70 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c11cb80 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c13cb90 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c15cba0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c17cbb0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c19cbc0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c1bcbd0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c1dcbe0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c1fcbf0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c21cc00 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c23cc10 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c25cc20 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c27cc30 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c29cc40 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c2bcc50 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c2dcc60 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c2fcc70 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c31cc80 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c33cc90 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c35cca0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c37ccb0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c39ccc0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c3bccd0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c3dcce0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c3fccf0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c41cd00 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c43cd10 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c45cd20 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c47cd30 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c49cd40 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c4bcd50 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c4dcd60 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c4fcd70 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c51cd80 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c53cd90 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c55cda0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c57cdb0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c59cdc0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c5bcdd0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c5dcde0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c5fcdf0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c61ce00 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c63ce10 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c65ce20 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c67ce30 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c69ce40 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c6bce50 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c6dce60 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c6fce70 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c71ce80 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c73ce90 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c75cea0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c77ceb0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c79cec0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c7bced0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c7dcee0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c7fcef0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c81cf00 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c83cf10 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c85cf20 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c87cf30 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c89cf40 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c8bcf50 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c8dcf60 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c8fcf70 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c91cf80 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c93cf90 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c95cfa0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c97cfb0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c99cfc0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c9bcfd0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c9dcfe0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c9fcff0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ca1d000 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ca3d010 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ca5d020 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ca7d030 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ca9d040 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0cabd050 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0cadd060 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0cafd070 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0cb1d080 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0cb3d090 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0cb5d0a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0cb7d0b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0cb9d0c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0cbbd0d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0cbdd0e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0cbfd0f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0cc1d100 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0cc3d110 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0cc5d120 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0cc7d130 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0cc9d140 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ccbd150 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ccdd160 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ccfd170 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0cd1d180 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:44\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0cd3d190 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08635220 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08d7b1b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08d9b1c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08dbb1d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08ddb1e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08dfb1f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08e1b200 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08e3b210 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08e5b220 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08e7b230 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08e9b240 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08ebb250 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08edb260 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08efb270 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08f1b280 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08f3b290 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08f5b2a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08f7b2b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08f9b2c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08fbb2d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08fdb2e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08ffb2f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0901b300 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0903b310 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0905b320 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0907b330 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0909b340 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb090bb350 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb090db360 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb090fb370 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0911b380 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0913b390 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0915b3a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0917b3b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0919b3c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb091bb3d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb091db3e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb091fb3f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0921b400 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0923b410 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0925b420 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0927b430 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0929b440 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb092bb450 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb092db460 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb092fb470 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0931b480 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0933b490 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0935b4a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0937b4b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0939b4c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb093bb4d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb093db4e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb093fb4f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0941b500 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0943b510 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0945b520 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0947b530 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0949b540 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb094bb550 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb094db560 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb094fb570 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0951b580 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0953b590 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0955b5a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0957b5b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0959b5c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb095bb5d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb095db5e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb095fb5f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0961b600 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0963b610 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0965b620 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0967b630 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0969b640 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb096bb650 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb096db660 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb096fb670 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0971b680 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0973b690 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0975b6a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0977b6b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0979b6c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb097bb6d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb097db6e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb097fb6f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0981b700 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0983b710 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0985b720 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0987b730 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0989b740 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb098bb750 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb098db760 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb098fb770 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0991b780 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0993b790 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0995b7a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0997b7b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0999b7c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb099bb7d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb099db7e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb099fb7f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09a1b800 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09a3b810 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09a5b820 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09a7b830 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09a9b840 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09abb850 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09adb860 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09afb870 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09b1b880 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09b3b890 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09b5b8a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09b7b8b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09b9b8c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09bbb8d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09bdb8e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09bfb8f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09c1b900 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09c3b910 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09c5b920 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09c7b930 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09c9b940 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09cbb950 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09cdb960 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09cfb970 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09d1b980 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09d3b990 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09d5b9a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09d7b9b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09d9b9c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09dbb9d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09ddb9e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09dfb9f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09e1ba00 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09e3ba10 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09e5ba20 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09e7ba30 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09e9ba40 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09ebba50 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09edba60 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09efba70 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09f1ba80 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09f3ba90 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09f5baa0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09f7bab0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09f9bac0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09fbbad0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09fdbae0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09ffbaf0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a01bb00 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a03bb10 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a05bb20 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a07bb30 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a09bb40 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a0bbb50 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a0dbb60 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a0fbb70 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a11bb80 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a13bb90 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a15bba0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a17bbb0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a19bbc0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a1bbbd0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a1dbbe0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a1fbbf0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a21bc00 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a23bc10 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a25bc20 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a27bc30 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a29bc40 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a2bbc50 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a2dbc60 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a2fbc70 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a31bc80 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a33bc90 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a35bca0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a37bcb0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a39bcc0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a3bbcd0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a3dbce0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a3fbcf0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a41bd00 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a43bd10 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a45bd20 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a47bd30 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a49bd40 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a4bbd50 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a4dbd60 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a4fbd70 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a51bd80 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a53bd90 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a55bda0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a57bdb0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a59bdc0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a5bbdd0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a5dbde0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a5fbdf0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a61be00 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a63be10 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a65be20 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a67be30 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a69be40 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a6bbe50 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a6dbe60 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a6fbe70 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a71be80 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a73be90 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a75bea0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a77beb0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a79bec0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a7bbed0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a7dbee0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a7fbef0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a81bf00 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a83bf10 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a85bf20 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a87bf30 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a89bf40 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a8bbf50 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a8dbf60 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a8fbf70 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a91bf80 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a93bf90 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a95bfa0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a97bfb0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a99bfc0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a9bbfd0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a9dbfe0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a9fbff0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0aa1c000 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0aa3c010 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0aa5c020 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0aa7c030 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0aa9c040 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0aabc050 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0aadc060 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0aafc070 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ab1c080 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ab3c090 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ab5c0a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ab7c0b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ab9c0c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0abbc0d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0abdc0e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0abfc0f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ac1c100 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ac3c110 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ac5c120 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ac7c130 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ac9c140 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0acbc150 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0acdc160 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0acfc170 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ad1c180 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ad3c190 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ad5c1a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ad7c1b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ad9c1c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0adbc1d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0addc1e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0adfc1f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ae1c200 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ae3c210 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ae5c220 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ae7c230 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ae9c240 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0aebc250 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0aedc260 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0aefc270 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0af1c280 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0af3c290 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0af5c2a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0af7c2b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0af9c2c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0afbc2d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0afdc2e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0affc2f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b01c300 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b03c310 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b05c320 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b07c330 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b09c340 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b0bc350 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b0dc360 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b0fc370 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b11c380 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b13c390 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b15c3a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b17c3b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b19c3c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b1bc3d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b1dc3e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b1fc3f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b21c400 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b23c410 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b25c420 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b27c430 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b29c440 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b2bc450 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b2dc460 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b2fc470 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b31c480 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b33c490 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b35c4a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b37c4b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b39c4c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b3bc4d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b3dc4e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b3fc4f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b41c500 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b43c510 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b45c520 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b47c530 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b49c540 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b4bc550 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b4dc560 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b4fc570 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b51c580 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b53c590 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b55c5a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b57c5b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b59c5c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b5bc5d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b5dc5e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b5fc5f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b61c600 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b63c610 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b65c620 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b67c630 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b69c640 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b6bc650 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b6dc660 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b6fc670 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b71c680 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b73c690 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b75c6a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b77c6b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b79c6c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b7bc6d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b7dc6e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b7fc6f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b81c700 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b83c710 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b85c720 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b87c730 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b89c740 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b8bc750 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b8dc760 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b8fc770 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b91c780 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b93c790 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b95c7a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b97c7b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b99c7c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b9bc7d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b9dc7e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b9fc7f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ba1c800 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ba3c810 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ba5c820 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ba7c830 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ba9c840 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0babc850 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0badc860 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bafc870 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bb1c880 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bb3c890 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bb5c8a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bb7c8b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bb9c8c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bbbc8d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bbdc8e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bbfc8f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bc1c900 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bc3c910 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bc5c920 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bc7c930 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bc9c940 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bcbc950 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bcdc960 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bcfc970 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bd1c980 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bd3c990 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bd5c9a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bd7c9b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bd9c9c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bdbc9d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bddc9e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bdfc9f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0be1ca00 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0be3ca10 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0be5ca20 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0be7ca30 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0be9ca40 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bebca50 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bedca60 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0befca70 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bf1ca80 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bf3ca90 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bf5caa0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bf7cab0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bf9cac0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bfbcad0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bfdcae0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bffcaf0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c01cb00 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c03cb10 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c05cb20 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c07cb30 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c09cb40 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c0bcb50 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c0dcb60 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c0fcb70 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c11cb80 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c13cb90 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c15cba0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c17cbb0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c19cbc0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c1bcbd0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c1dcbe0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c1fcbf0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c21cc00 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c23cc10 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c25cc20 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c27cc30 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c29cc40 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c2bcc50 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c2dcc60 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c2fcc70 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c31cc80 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c33cc90 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c35cca0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c37ccb0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c39ccc0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c3bccd0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c3dcce0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c3fccf0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c41cd00 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c43cd10 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c45cd20 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c47cd30 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c49cd40 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c4bcd50 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c4dcd60 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c4fcd70 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c51cd80 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c53cd90 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c55cda0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c57cdb0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c59cdc0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c5bcdd0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c5dcde0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c5fcdf0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c61ce00 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c63ce10 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c65ce20 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c67ce30 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c69ce40 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c6bce50 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c6dce60 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c6fce70 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c71ce80 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c73ce90 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c75cea0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c77ceb0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c79cec0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c7bced0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c7dcee0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c7fcef0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c81cf00 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c83cf10 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c85cf20 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c87cf30 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c89cf40 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c8bcf50 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c8dcf60 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c8fcf70 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c91cf80 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c93cf90 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c95cfa0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c97cfb0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c99cfc0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c9bcfd0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c9dcfe0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c9fcff0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ca1d000 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ca3d010 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ca5d020 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ca7d030 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ca9d040 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0cabd050 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0cadd060 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0cafd070 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0cb1d080 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0cb3d090 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0cb5d0a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0cb7d0b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0cb9d0c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0cbbd0d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0cbdd0e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0cbfd0f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0cc1d100 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0cc3d110 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0cc5d120 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0cc7d130 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0cc9d140 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ccbd150 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ccdd160 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ccfd170 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0cd1d180 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0cd3d190 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb088fbf80 for tiles in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m211\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Computing short-range forces (using 8 tiles and 32 / 32 cores) done.\n",
"[02:24:45\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Acceleration loop, direction 0...\n",
"[02:24:45\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Acceleration loop, direction 0 done.\n",
"[02:24:45\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Kick loop, direction 0...\n",
"[02:24:45\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Kick loop, direction 0 done.\n",
"[02:24:45\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Acceleration loop, direction 1...\n",
"[02:24:45\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Acceleration loop, direction 1 done.\n",
"[02:24:45\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Kick loop, direction 1...\n",
"[02:24:45\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Kick loop, direction 1 done.\n",
"[02:24:45\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Acceleration loop, direction 2...\n",
"[02:24:45\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Acceleration loop, direction 2 done.\n",
"[02:24:45\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Kick loop, direction 2...\n",
"[02:24:45\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Kick loop, direction 2 done.\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08c1b190 for g_pad in \u001b[38;5;227mpmcola.c\u001b[0;36m:\u001b[38;5;192mkick_pm_cola\u001b[0;36m:\u001b[0;32m592\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08d1b1a0 for pp in \u001b[38;5;227mpmcola.c\u001b[0;36m:\u001b[38;5;192mkick_pm_cola\u001b[0;36m:\u001b[0;32m598\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]====|Kicking particles (using 32 cores) done.\n",
"[02:24:45\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]====|Drifting particles (using 32 cores)...\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mndrift=7\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mnkick=7\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246maiDrift=0.382500\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246maKick=0.406250\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mafDrift=0.430000\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246malpha_p=0.307609\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246malpha_lpt_1=0.000000\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246malpha_lpt_2=0.000000\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246malpha_ext=0.000000\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Drift loop, direction 0...\n",
"[02:24:45\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Drift loop, direction 0 done.\n",
"[02:24:45\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Drift loop, direction 1...\n",
"[02:24:45\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Drift loop, direction 1 done.\n",
"[02:24:45\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Drift loop, direction 2...\n",
"[02:24:45\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Drift loop, direction 2 done.\n",
"[02:24:45\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]====|Drifting particles (using 32 cores) done.\n",
"[02:24:45\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]==|ModuleP3M: End P3M step 8/20, time_kick:0.406250, time_drift=0.430000.\n",
"[02:24:45\u001b[00m|\u001b[38;5;159mTIMER \u001b[00m]==|Step 8/20: Density: 7.050 CPU - 0.229 wallclock seconds used.\n",
"[02:24:45\u001b[00m|\u001b[38;5;159mTIMER \u001b[00m]==|Step 8/20: Potential: 0.984 CPU - 0.034 wallclock seconds used.\n",
"[02:24:45\u001b[00m|\u001b[38;5;159mTIMER \u001b[00m]==|Step 8/20: Accelerations (long-range): 1.052 CPU - 0.038 wallclock seconds used.\n",
"[02:24:45\u001b[00m|\u001b[38;5;159mTIMER \u001b[00m]==|Step 8/20: Accelerations (short-range): 2.697 CPU - 0.142 wallclock seconds used.\n",
"[02:24:45\u001b[00m|\u001b[38;5;159mTIMER \u001b[00m]==|Step 8/20: Kick: 1.160 CPU - 0.039 wallclock seconds used.\n",
"[02:24:45\u001b[00m|\u001b[38;5;159mTIMER \u001b[00m]==|Step 8/20: Drift: 2.280 CPU - 0.074 wallclock seconds used.\n",
"[02:24:45\u001b[00m|\u001b[38;5;159mTIMER \u001b[00m]==|Step 8/20: Inputs: 0.000 CPU - 0.000 wallclock seconds used.\n",
"[02:24:45\u001b[00m|\u001b[38;5;159mTIMER \u001b[00m]==|Step 8/20: Diagnostic: 0.000 CPU - 0.000 wallclock seconds used.\n",
"[02:24:45\u001b[00m|\u001b[38;5;159mTIMER \u001b[00m]==|Step 8/20: Outputs: 0.000 CPU - 0.000 wallclock seconds used.\n",
"[02:24:45\u001b[00m|\u001b[38;5;159mTIMER \u001b[00m]==|Step 8/20: Total Evolution: 15.223 CPU - 0.557 wallclock seconds used.\n",
"[02:24:45\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]==|ModuleP3M: Begin P3M step 9/20, time_kick:0.406250, time_drift=0.430000.\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]====|\u001b[38;5;246mGiven the available memory, 4095 threads could be allocated and 32 threads will be used in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel\u001b[0;36m:\u001b[0;32m347\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]====|\u001b[38;5;246mGiven the available memory, 4095 threads could be allocated and 32 threads will be used in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m73\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]====|Getting density contrast (using 32 cores and 32 arrays, parallel routine 1)...\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]======|\u001b[38;5;246mPerforming CiC binning...\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 0...\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1489a0000b60 for threadedDensity[3] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148960000b60 for threadedDensity[13] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148988000b60 for threadedDensity[28] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 13...\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 28...\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1488dc000b60 for threadedDensity[17] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1488f8000b60 for threadedDensity[19] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 17...\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 19...\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148968000b60 for threadedDensity[10] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148980000b60 for threadedDensity[11] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1489b8000b60 for threadedDensity[4] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 11...\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 4...\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148940000b60 for threadedDensity[27] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148908000b60 for threadedDensity[8] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 27...\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148950000b60 for threadedDensity[9] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148928000b60 for threadedDensity[20] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 9...\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 20...\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 8...\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1488d0000b60 for threadedDensity[5] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148990000b60 for threadedDensity[21] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 3...\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 21...\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 5...\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148920000b60 for threadedDensity[12] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148978000b60 for threadedDensity[26] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 12...\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 26...\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148910000b60 for threadedDensity[23] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1489a8000b60 for threadedDensity[30] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 23...\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 30...\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148918000b60 for threadedDensity[15] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1488e8000b60 for threadedDensity[2] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 15...\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 2...\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148958000b60 for threadedDensity[22] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1488f0000b60 for threadedDensity[24] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 22...\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 24...\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148938000b60 for threadedDensity[18] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1488e0000b60 for threadedDensity[6] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 18...\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 6...\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1489b0000b60 for threadedDensity[1] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148948000b60 for threadedDensity[31] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 1...\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 31...\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 10...\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148900000b60 for threadedDensity[16] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1488d8000b60 for threadedDensity[29] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 16...\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 29...\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148998000b60 for threadedDensity[25] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148970000b60 for threadedDensity[7] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 25...\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 7...\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148930000b60 for threadedDensity[14] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 14...\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 28 done.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 13 done.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 9 done.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 20 done.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 0 done.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 8 done.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 11 done.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 4 done.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 19 done.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 17 done.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 5 done.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 27 done.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 21 done.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 3 done.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 12 done.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 26 done.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 23 done.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 30 done.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 14 done.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 15 done.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 31 done.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 1 done.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 10 done.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 6 done.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 18 done.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 24 done.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 22 done.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 25 done.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 7 done.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 16 done.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 29 done.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 2 done.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]======|\u001b[38;5;246mPerforming CiC done.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]======|\u001b[38;5;246mPerforming CiC reduction...\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x1489b0000b60 for threadedDensity[1] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x1488e8000b60 for threadedDensity[2] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x1489a0000b60 for threadedDensity[3] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x1489b8000b60 for threadedDensity[4] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x1488d0000b60 for threadedDensity[5] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x1488e0000b60 for threadedDensity[6] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148970000b60 for threadedDensity[7] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148908000b60 for threadedDensity[8] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148950000b60 for threadedDensity[9] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148968000b60 for threadedDensity[10] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148980000b60 for threadedDensity[11] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148920000b60 for threadedDensity[12] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148960000b60 for threadedDensity[13] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148930000b60 for threadedDensity[14] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148918000b60 for threadedDensity[15] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148900000b60 for threadedDensity[16] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x1488dc000b60 for threadedDensity[17] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148938000b60 for threadedDensity[18] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x1488f8000b60 for threadedDensity[19] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148928000b60 for threadedDensity[20] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148990000b60 for threadedDensity[21] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148958000b60 for threadedDensity[22] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148910000b60 for threadedDensity[23] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x1488f0000b60 for threadedDensity[24] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148998000b60 for threadedDensity[25] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148978000b60 for threadedDensity[26] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148940000b60 for threadedDensity[27] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148988000b60 for threadedDensity[28] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x1488d8000b60 for threadedDensity[29] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x1489a8000b60 for threadedDensity[30] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148948000b60 for threadedDensity[31] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]======|\u001b[38;5;246mPerforming CiC reduction done.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]====|Getting density contrast (using 32 cores and 32 arrays, parallel routine 1) done.\n",
"[02:24:45\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]====|Getting gravitational potential, periodic boundary conditions (using 32 cores)...\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated memory (1081344 bytes) at 0x55cb08c1b190 for AUX in \u001b[38;5;227mpoisson_solvers.c\u001b[0;36m:\u001b[38;5;192msolve_poisson_DFT\u001b[0;36m:\u001b[0;32m106\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08c1b190 for AUX in \u001b[38;5;227mpoisson_solvers.c\u001b[0;36m:\u001b[38;5;192msolve_poisson_DFT\u001b[0;36m:\u001b[0;32m116\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]====|Getting gravitational potential, periodic boundary conditions (using 32 cores) done.\n",
"[02:24:45\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]====|Kicking particles (using 32 cores)...\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mnkick=8\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mndrift=8\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246maiKick=0.406250\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246maDrift=0.430000\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mafKick=0.453750\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mbeta_delta=-0.055903\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mbeta_lpt_1=0.000000\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mbeta_lpt_2=0.000000\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mbeta_ext=0.000000\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated memory (1048576 bytes) at 0x55cb08c1b190 for g_pad in \u001b[38;5;227mpmcola.c\u001b[0;36m:\u001b[38;5;192mkick_pm_cola\u001b[0;36m:\u001b[0;32m478\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated memory (393216 bytes) at 0x55cb08d1b1a0 for pp in \u001b[38;5;227mpmcola.c\u001b[0;36m:\u001b[38;5;192mkick_pm_cola\u001b[0;36m:\u001b[0;32m554\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Computing short-range forces (using 8 tiles and 32 / 32 cores)...\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (8192 bytes) at 0x55cb08828490 for tiles in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m57\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb08635220 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb08d7b1b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb08d9b1c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb08dbb1d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb08ddb1e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb08dfb1f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb08e1b200 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb08e3b210 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb08e5b220 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb08e7b230 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb08e9b240 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb08ebb250 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb08edb260 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb08efb270 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb08f1b280 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb08f3b290 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb08f5b2a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb08f7b2b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb08f9b2c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb08fbb2d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb08fdb2e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb08ffb2f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0901b300 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0903b310 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0905b320 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0907b330 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0909b340 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb090bb350 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb090db360 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb090fb370 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0911b380 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0913b390 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0915b3a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0917b3b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0919b3c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb091bb3d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb091db3e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb091fb3f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0921b400 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0923b410 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0925b420 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0927b430 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0929b440 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb092bb450 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb092db460 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb092fb470 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0931b480 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0933b490 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0935b4a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0937b4b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0939b4c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb093bb4d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb093db4e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb093fb4f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0941b500 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0943b510 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0945b520 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0947b530 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0949b540 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb094bb550 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb094db560 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb094fb570 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0951b580 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0953b590 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0955b5a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0957b5b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0959b5c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb095bb5d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb095db5e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb095fb5f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0961b600 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0963b610 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0965b620 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0967b630 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0969b640 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb096bb650 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb096db660 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb096fb670 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0971b680 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0973b690 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0975b6a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0977b6b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0979b6c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb097bb6d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb097db6e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb097fb6f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0981b700 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0983b710 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0985b720 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0987b730 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0989b740 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb098bb750 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb098db760 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb098fb770 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0991b780 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0993b790 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0995b7a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0997b7b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0999b7c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb099bb7d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb099db7e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb099fb7f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09a1b800 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09a3b810 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09a5b820 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09a7b830 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09a9b840 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09abb850 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09adb860 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09afb870 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09b1b880 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09b3b890 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09b5b8a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09b7b8b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09b9b8c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09bbb8d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09bdb8e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09bfb8f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09c1b900 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09c3b910 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09c5b920 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09c7b930 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09c9b940 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09cbb950 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09cdb960 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09cfb970 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09d1b980 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09d3b990 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09d5b9a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09d7b9b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09d9b9c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09dbb9d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09ddb9e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09dfb9f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09e1ba00 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09e3ba10 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09e5ba20 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09e7ba30 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09e9ba40 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09ebba50 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09edba60 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09efba70 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09f1ba80 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09f3ba90 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09f5baa0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09f7bab0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09f9bac0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09fbbad0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09fdbae0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09ffbaf0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a01bb00 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a03bb10 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a05bb20 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a07bb30 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a09bb40 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a0bbb50 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a0dbb60 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a0fbb70 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a11bb80 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a13bb90 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a15bba0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a17bbb0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a19bbc0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a1bbbd0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a1dbbe0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a1fbbf0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a21bc00 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a23bc10 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a25bc20 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a27bc30 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a29bc40 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a2bbc50 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a2dbc60 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a2fbc70 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a31bc80 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a33bc90 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a35bca0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a37bcb0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a39bcc0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a3bbcd0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a3dbce0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a3fbcf0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a41bd00 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a43bd10 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a45bd20 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a47bd30 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a49bd40 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a4bbd50 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a4dbd60 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a4fbd70 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a51bd80 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a53bd90 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a55bda0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a57bdb0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a59bdc0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a5bbdd0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a5dbde0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a5fbdf0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a61be00 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a63be10 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a65be20 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a67be30 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a69be40 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a6bbe50 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a6dbe60 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a6fbe70 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a71be80 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a73be90 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a75bea0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a77beb0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a79bec0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a7bbed0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a7dbee0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a7fbef0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a81bf00 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a83bf10 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a85bf20 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a87bf30 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a89bf40 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a8bbf50 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a8dbf60 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a8fbf70 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a91bf80 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a93bf90 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a95bfa0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a97bfb0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a99bfc0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a9bbfd0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a9dbfe0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a9fbff0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0aa1c000 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0aa3c010 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0aa5c020 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0aa7c030 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0aa9c040 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0aabc050 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0aadc060 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0aafc070 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ab1c080 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ab3c090 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ab5c0a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ab7c0b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ab9c0c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0abbc0d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0abdc0e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0abfc0f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ac1c100 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ac3c110 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ac5c120 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ac7c130 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ac9c140 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0acbc150 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0acdc160 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0acfc170 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ad1c180 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ad3c190 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ad5c1a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ad7c1b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ad9c1c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0adbc1d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0addc1e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0adfc1f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ae1c200 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ae3c210 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ae5c220 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ae7c230 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ae9c240 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0aebc250 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0aedc260 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0aefc270 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0af1c280 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0af3c290 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0af5c2a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0af7c2b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0af9c2c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0afbc2d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0afdc2e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0affc2f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b01c300 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b03c310 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b05c320 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b07c330 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b09c340 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b0bc350 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b0dc360 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b0fc370 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b11c380 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b13c390 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b15c3a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b17c3b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b19c3c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b1bc3d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b1dc3e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b1fc3f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b21c400 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b23c410 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b25c420 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b27c430 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b29c440 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b2bc450 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b2dc460 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b2fc470 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b31c480 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b33c490 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b35c4a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b37c4b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b39c4c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b3bc4d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b3dc4e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b3fc4f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b41c500 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b43c510 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b45c520 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b47c530 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b49c540 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b4bc550 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b4dc560 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b4fc570 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b51c580 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b53c590 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b55c5a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b57c5b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b59c5c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b5bc5d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b5dc5e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b5fc5f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b61c600 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b63c610 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b65c620 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b67c630 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b69c640 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b6bc650 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b6dc660 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b6fc670 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b71c680 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b73c690 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b75c6a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b77c6b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b79c6c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b7bc6d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b7dc6e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b7fc6f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b81c700 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b83c710 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b85c720 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b87c730 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b89c740 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b8bc750 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b8dc760 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b8fc770 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b91c780 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b93c790 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b95c7a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b97c7b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b99c7c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b9bc7d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b9dc7e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b9fc7f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ba1c800 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ba3c810 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ba5c820 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ba7c830 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ba9c840 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0babc850 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0badc860 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bafc870 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bb1c880 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bb3c890 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bb5c8a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bb7c8b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bb9c8c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bbbc8d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bbdc8e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bbfc8f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bc1c900 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bc3c910 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bc5c920 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bc7c930 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bc9c940 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bcbc950 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bcdc960 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bcfc970 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bd1c980 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bd3c990 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bd5c9a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bd7c9b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bd9c9c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bdbc9d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bddc9e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bdfc9f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0be1ca00 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0be3ca10 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0be5ca20 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0be7ca30 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0be9ca40 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bebca50 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bedca60 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0befca70 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bf1ca80 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bf3ca90 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bf5caa0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bf7cab0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bf9cac0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bfbcad0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bfdcae0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bffcaf0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c01cb00 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c03cb10 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c05cb20 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c07cb30 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c09cb40 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c0bcb50 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c0dcb60 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c0fcb70 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c11cb80 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c13cb90 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c15cba0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c17cbb0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c19cbc0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c1bcbd0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c1dcbe0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c1fcbf0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c21cc00 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c23cc10 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c25cc20 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c27cc30 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c29cc40 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c2bcc50 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c2dcc60 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c2fcc70 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c31cc80 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c33cc90 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c35cca0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c37ccb0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c39ccc0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c3bccd0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c3dcce0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c3fccf0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c41cd00 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c43cd10 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c45cd20 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c47cd30 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c49cd40 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c4bcd50 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c4dcd60 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c4fcd70 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c51cd80 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c53cd90 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c55cda0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c57cdb0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c59cdc0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c5bcdd0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c5dcde0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c5fcdf0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c61ce00 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c63ce10 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c65ce20 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c67ce30 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c69ce40 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c6bce50 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c6dce60 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c6fce70 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c71ce80 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c73ce90 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c75cea0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c77ceb0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c79cec0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c7bced0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c7dcee0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c7fcef0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c81cf00 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c83cf10 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c85cf20 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c87cf30 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c89cf40 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c8bcf50 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c8dcf60 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c8fcf70 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c91cf80 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c93cf90 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c95cfa0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c97cfb0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c99cfc0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c9bcfd0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c9dcfe0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c9fcff0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ca1d000 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ca3d010 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ca5d020 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ca7d030 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ca9d040 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0cabd050 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0cadd060 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0cafd070 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0cb1d080 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0cb3d090 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0cb5d0a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0cb7d0b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0cb9d0c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0cbbd0d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0cbdd0e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0cbfd0f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0cc1d100 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0cc3d110 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0cc5d120 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0cc7d130 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0cc9d140 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ccbd150 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ccdd160 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ccfd170 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0cd1d180 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0cd3d190 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08635220 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08d7b1b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08d9b1c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08dbb1d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08ddb1e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08dfb1f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08e1b200 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08e3b210 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08e5b220 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08e7b230 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08e9b240 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08ebb250 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08edb260 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08efb270 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08f1b280 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08f3b290 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08f5b2a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08f7b2b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08f9b2c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08fbb2d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08fdb2e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08ffb2f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0901b300 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0903b310 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0905b320 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0907b330 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0909b340 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb090bb350 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb090db360 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb090fb370 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0911b380 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0913b390 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0915b3a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0917b3b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0919b3c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb091bb3d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb091db3e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb091fb3f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0921b400 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0923b410 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0925b420 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0927b430 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0929b440 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb092bb450 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb092db460 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb092fb470 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0931b480 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0933b490 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0935b4a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0937b4b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0939b4c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb093bb4d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb093db4e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb093fb4f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0941b500 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0943b510 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0945b520 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0947b530 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0949b540 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb094bb550 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb094db560 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb094fb570 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0951b580 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0953b590 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0955b5a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0957b5b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0959b5c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb095bb5d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb095db5e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb095fb5f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0961b600 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0963b610 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0965b620 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0967b630 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0969b640 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb096bb650 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb096db660 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb096fb670 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0971b680 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0973b690 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0975b6a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0977b6b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0979b6c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb097bb6d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb097db6e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb097fb6f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0981b700 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0983b710 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0985b720 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0987b730 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0989b740 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb098bb750 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb098db760 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb098fb770 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0991b780 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0993b790 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0995b7a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0997b7b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0999b7c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb099bb7d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb099db7e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb099fb7f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09a1b800 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09a3b810 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09a5b820 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09a7b830 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09a9b840 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09abb850 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09adb860 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09afb870 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09b1b880 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09b3b890 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09b5b8a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09b7b8b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09b9b8c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09bbb8d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09bdb8e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09bfb8f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09c1b900 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09c3b910 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09c5b920 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09c7b930 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09c9b940 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09cbb950 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09cdb960 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09cfb970 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09d1b980 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09d3b990 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09d5b9a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09d7b9b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09d9b9c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09dbb9d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09ddb9e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09dfb9f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09e1ba00 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09e3ba10 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09e5ba20 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09e7ba30 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09e9ba40 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09ebba50 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09edba60 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09efba70 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09f1ba80 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09f3ba90 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09f5baa0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09f7bab0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09f9bac0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09fbbad0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09fdbae0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09ffbaf0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a01bb00 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a03bb10 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a05bb20 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a07bb30 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a09bb40 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a0bbb50 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a0dbb60 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a0fbb70 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a11bb80 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a13bb90 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a15bba0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a17bbb0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a19bbc0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a1bbbd0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a1dbbe0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a1fbbf0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a21bc00 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a23bc10 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a25bc20 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a27bc30 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a29bc40 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a2bbc50 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a2dbc60 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a2fbc70 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a31bc80 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a33bc90 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a35bca0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a37bcb0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a39bcc0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a3bbcd0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a3dbce0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a3fbcf0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a41bd00 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a43bd10 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a45bd20 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a47bd30 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a49bd40 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a4bbd50 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a4dbd60 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a4fbd70 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a51bd80 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a53bd90 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a55bda0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a57bdb0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a59bdc0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a5bbdd0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a5dbde0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a5fbdf0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a61be00 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a63be10 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a65be20 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a67be30 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a69be40 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a6bbe50 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a6dbe60 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a6fbe70 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a71be80 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a73be90 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a75bea0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a77beb0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a79bec0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a7bbed0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a7dbee0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a7fbef0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a81bf00 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a83bf10 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a85bf20 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a87bf30 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a89bf40 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a8bbf50 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a8dbf60 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a8fbf70 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a91bf80 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a93bf90 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a95bfa0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a97bfb0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a99bfc0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a9bbfd0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a9dbfe0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a9fbff0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0aa1c000 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0aa3c010 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0aa5c020 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0aa7c030 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0aa9c040 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0aabc050 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0aadc060 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0aafc070 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ab1c080 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ab3c090 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ab5c0a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ab7c0b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ab9c0c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0abbc0d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0abdc0e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0abfc0f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ac1c100 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ac3c110 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ac5c120 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ac7c130 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ac9c140 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0acbc150 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0acdc160 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0acfc170 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ad1c180 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ad3c190 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ad5c1a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ad7c1b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ad9c1c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0adbc1d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0addc1e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0adfc1f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ae1c200 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ae3c210 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ae5c220 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ae7c230 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ae9c240 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0aebc250 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0aedc260 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0aefc270 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0af1c280 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0af3c290 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0af5c2a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0af7c2b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0af9c2c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0afbc2d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0afdc2e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0affc2f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b01c300 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b03c310 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b05c320 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b07c330 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b09c340 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b0bc350 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b0dc360 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b0fc370 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b11c380 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b13c390 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b15c3a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b17c3b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b19c3c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b1bc3d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b1dc3e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b1fc3f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b21c400 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b23c410 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b25c420 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b27c430 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b29c440 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b2bc450 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b2dc460 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b2fc470 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b31c480 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b33c490 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b35c4a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b37c4b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b39c4c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b3bc4d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b3dc4e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b3fc4f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b41c500 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b43c510 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b45c520 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b47c530 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b49c540 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b4bc550 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b4dc560 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b4fc570 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b51c580 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b53c590 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b55c5a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b57c5b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b59c5c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b5bc5d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b5dc5e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b5fc5f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b61c600 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b63c610 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b65c620 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b67c630 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b69c640 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b6bc650 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b6dc660 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b6fc670 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b71c680 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b73c690 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b75c6a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b77c6b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b79c6c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b7bc6d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b7dc6e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b7fc6f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b81c700 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b83c710 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b85c720 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b87c730 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b89c740 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b8bc750 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b8dc760 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b8fc770 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b91c780 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b93c790 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b95c7a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b97c7b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b99c7c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b9bc7d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b9dc7e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b9fc7f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ba1c800 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ba3c810 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ba5c820 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ba7c830 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ba9c840 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0babc850 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0badc860 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bafc870 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bb1c880 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bb3c890 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bb5c8a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bb7c8b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bb9c8c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bbbc8d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bbdc8e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bbfc8f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bc1c900 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bc3c910 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bc5c920 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bc7c930 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bc9c940 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bcbc950 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bcdc960 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bcfc970 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bd1c980 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bd3c990 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bd5c9a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bd7c9b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bd9c9c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bdbc9d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bddc9e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bdfc9f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0be1ca00 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0be3ca10 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0be5ca20 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0be7ca30 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0be9ca40 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bebca50 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bedca60 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0befca70 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bf1ca80 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bf3ca90 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bf5caa0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bf7cab0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bf9cac0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bfbcad0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bfdcae0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bffcaf0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c01cb00 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c03cb10 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c05cb20 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c07cb30 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c09cb40 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c0bcb50 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c0dcb60 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c0fcb70 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c11cb80 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c13cb90 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c15cba0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c17cbb0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c19cbc0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c1bcbd0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c1dcbe0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c1fcbf0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c21cc00 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c23cc10 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c25cc20 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c27cc30 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c29cc40 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c2bcc50 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c2dcc60 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c2fcc70 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c31cc80 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c33cc90 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c35cca0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c37ccb0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c39ccc0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c3bccd0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c3dcce0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c3fccf0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c41cd00 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c43cd10 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c45cd20 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c47cd30 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c49cd40 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c4bcd50 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c4dcd60 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c4fcd70 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c51cd80 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c53cd90 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c55cda0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c57cdb0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c59cdc0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c5bcdd0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c5dcde0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c5fcdf0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c61ce00 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c63ce10 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c65ce20 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c67ce30 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c69ce40 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c6bce50 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c6dce60 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c6fce70 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c71ce80 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c73ce90 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c75cea0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c77ceb0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c79cec0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c7bced0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c7dcee0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c7fcef0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c81cf00 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c83cf10 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c85cf20 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c87cf30 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c89cf40 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c8bcf50 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c8dcf60 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c8fcf70 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c91cf80 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c93cf90 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c95cfa0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c97cfb0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c99cfc0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c9bcfd0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c9dcfe0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c9fcff0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ca1d000 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ca3d010 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ca5d020 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ca7d030 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ca9d040 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0cabd050 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0cadd060 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0cafd070 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0cb1d080 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0cb3d090 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0cb5d0a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0cb7d0b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0cb9d0c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0cbbd0d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0cbdd0e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0cbfd0f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0cc1d100 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0cc3d110 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0cc5d120 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0cc7d130 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0cc9d140 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ccbd150 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ccdd160 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ccfd170 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0cd1d180 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0cd3d190 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08828490 for tiles in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m211\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Computing short-range forces (using 8 tiles and 32 / 32 cores) done.\n",
"[02:24:45\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Acceleration loop, direction 0...\n",
"[02:24:45\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Acceleration loop, direction 0 done.\n",
"[02:24:45\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Kick loop, direction 0...\n",
"[02:24:45\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Kick loop, direction 0 done.\n",
"[02:24:45\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Acceleration loop, direction 1...\n",
"[02:24:45\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Acceleration loop, direction 1 done.\n",
"[02:24:45\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Kick loop, direction 1...\n",
"[02:24:45\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Kick loop, direction 1 done.\n",
"[02:24:45\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Acceleration loop, direction 2...\n",
"[02:24:45\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Acceleration loop, direction 2 done.\n",
"[02:24:45\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Kick loop, direction 2...\n",
"[02:24:45\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Kick loop, direction 2 done.\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08c1b190 for g_pad in \u001b[38;5;227mpmcola.c\u001b[0;36m:\u001b[38;5;192mkick_pm_cola\u001b[0;36m:\u001b[0;32m592\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08d1b1a0 for pp in \u001b[38;5;227mpmcola.c\u001b[0;36m:\u001b[38;5;192mkick_pm_cola\u001b[0;36m:\u001b[0;32m598\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]====|Kicking particles (using 32 cores) done.\n",
"[02:24:45\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]====|Drifting particles (using 32 cores)...\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mndrift=8\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mnkick=8\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246maiDrift=0.430000\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246maKick=0.453750\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mafDrift=0.477500\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246malpha_p=0.254110\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246malpha_lpt_1=0.000000\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246malpha_lpt_2=0.000000\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246malpha_ext=0.000000\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Drift loop, direction 0...\n",
"[02:24:45\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Drift loop, direction 0 done.\n",
"[02:24:45\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Drift loop, direction 1...\n",
"[02:24:45\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Drift loop, direction 1 done.\n",
"[02:24:45\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Drift loop, direction 2...\n",
"[02:24:45\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Drift loop, direction 2 done.\n",
"[02:24:45\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]====|Drifting particles (using 32 cores) done.\n",
"[02:24:45\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]==|ModuleP3M: End P3M step 9/20, time_kick:0.453750, time_drift=0.477500.\n",
"[02:24:45\u001b[00m|\u001b[38;5;159mTIMER \u001b[00m]==|Step 9/20: Density: 2.194 CPU - 0.073 wallclock seconds used.\n",
"[02:24:45\u001b[00m|\u001b[38;5;159mTIMER \u001b[00m]==|Step 9/20: Potential: 0.842 CPU - 0.036 wallclock seconds used.\n",
"[02:24:45\u001b[00m|\u001b[38;5;159mTIMER \u001b[00m]==|Step 9/20: Accelerations (long-range): 0.207 CPU - 0.007 wallclock seconds used.\n",
"[02:24:45\u001b[00m|\u001b[38;5;159mTIMER \u001b[00m]==|Step 9/20: Accelerations (short-range): 2.762 CPU - 0.190 wallclock seconds used.\n",
"[02:24:45\u001b[00m|\u001b[38;5;159mTIMER \u001b[00m]==|Step 9/20: Kick: 0.032 CPU - 0.001 wallclock seconds used.\n",
"[02:24:45\u001b[00m|\u001b[38;5;159mTIMER \u001b[00m]==|Step 9/20: Drift: 0.032 CPU - 0.000 wallclock seconds used.\n",
"[02:24:45\u001b[00m|\u001b[38;5;159mTIMER \u001b[00m]==|Step 9/20: Inputs: 0.000 CPU - 0.000 wallclock seconds used.\n",
"[02:24:45\u001b[00m|\u001b[38;5;159mTIMER \u001b[00m]==|Step 9/20: Diagnostic: 0.000 CPU - 0.000 wallclock seconds used.\n",
"[02:24:45\u001b[00m|\u001b[38;5;159mTIMER \u001b[00m]==|Step 9/20: Outputs: 0.000 CPU - 0.000 wallclock seconds used.\n",
"[02:24:45\u001b[00m|\u001b[38;5;159mTIMER \u001b[00m]==|Step 9/20: Total Evolution: 6.069 CPU - 0.307 wallclock seconds used.\n",
"[02:24:45\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]==|ModuleP3M: Begin P3M step 10/20, time_kick:0.453750, time_drift=0.477500.\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]====|\u001b[38;5;246mGiven the available memory, 4095 threads could be allocated and 32 threads will be used in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel\u001b[0;36m:\u001b[0;32m347\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]====|\u001b[38;5;246mGiven the available memory, 4095 threads could be allocated and 32 threads will be used in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m73\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]====|Getting density contrast (using 32 cores and 32 arrays, parallel routine 1)...\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]======|\u001b[38;5;246mPerforming CiC binning...\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 0...\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1488d0000b60 for threadedDensity[5] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148940000b60 for threadedDensity[27] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 5...\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 27...\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148988000b60 for threadedDensity[28] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148908000b60 for threadedDensity[8] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 28...\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148960000b60 for threadedDensity[13] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1489a0000b60 for threadedDensity[3] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148990000b60 for threadedDensity[21] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 3...\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 21...\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148998000b60 for threadedDensity[25] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148970000b60 for threadedDensity[7] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 25...\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 7...\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148900000b60 for threadedDensity[16] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1489b0000b60 for threadedDensity[1] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148948000b60 for threadedDensity[31] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 1...\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 31...\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 16...\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148958000b60 for threadedDensity[22] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1488f0000b60 for threadedDensity[24] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 22...\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 24...\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148938000b60 for threadedDensity[18] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1488e0000b60 for threadedDensity[6] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 6...\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 18...\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148968000b60 for threadedDensity[10] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1488e8000b60 for threadedDensity[2] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 10...\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 2...\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148930000b60 for threadedDensity[14] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148918000b60 for threadedDensity[15] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 14...\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 15...\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148910000b60 for threadedDensity[23] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1489a8000b60 for threadedDensity[30] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 23...\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 30...\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148950000b60 for threadedDensity[9] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148928000b60 for threadedDensity[20] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 9...\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 20...\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148978000b60 for threadedDensity[26] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148920000b60 for threadedDensity[12] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 26...\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 12...\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1488f8000b60 for threadedDensity[19] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 13...\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1489b8000b60 for threadedDensity[4] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148980000b60 for threadedDensity[11] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 4...\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 19...\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 8...\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 11...\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1488dc000b60 for threadedDensity[17] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 17...\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1488d8000b60 for threadedDensity[29] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 29...\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 26 done.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 12 done.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 25 done.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 7 done.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 17 done.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 16 done.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 31 done.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 1 done.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 24 done.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 22 done.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 10 done.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 23 done.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 30 done.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 18 done.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 6 done.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 15 done.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 14 done.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 2 done.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 3 done.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 19 done.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 29 done.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 4 done.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 11 done.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 13 done.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 28 done.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 27 done.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 5 done.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 0 done.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 8 done.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 20 done.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 9 done.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 21 done.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]======|\u001b[38;5;246mPerforming CiC done.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]======|\u001b[38;5;246mPerforming CiC reduction...\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x1489b0000b60 for threadedDensity[1] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x1488e8000b60 for threadedDensity[2] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x1489a0000b60 for threadedDensity[3] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x1489b8000b60 for threadedDensity[4] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x1488d0000b60 for threadedDensity[5] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x1488e0000b60 for threadedDensity[6] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148970000b60 for threadedDensity[7] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148908000b60 for threadedDensity[8] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148950000b60 for threadedDensity[9] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148968000b60 for threadedDensity[10] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148980000b60 for threadedDensity[11] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148920000b60 for threadedDensity[12] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148960000b60 for threadedDensity[13] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148930000b60 for threadedDensity[14] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148918000b60 for threadedDensity[15] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148900000b60 for threadedDensity[16] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x1488dc000b60 for threadedDensity[17] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148938000b60 for threadedDensity[18] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x1488f8000b60 for threadedDensity[19] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148928000b60 for threadedDensity[20] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148990000b60 for threadedDensity[21] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148958000b60 for threadedDensity[22] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148910000b60 for threadedDensity[23] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x1488f0000b60 for threadedDensity[24] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148998000b60 for threadedDensity[25] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148978000b60 for threadedDensity[26] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148940000b60 for threadedDensity[27] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148988000b60 for threadedDensity[28] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x1488d8000b60 for threadedDensity[29] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x1489a8000b60 for threadedDensity[30] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148948000b60 for threadedDensity[31] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]======|\u001b[38;5;246mPerforming CiC reduction done.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]====|Getting density contrast (using 32 cores and 32 arrays, parallel routine 1) done.\n",
"[02:24:45\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]====|Getting gravitational potential, periodic boundary conditions (using 32 cores)...\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated memory (1081344 bytes) at 0x55cb08c1b190 for AUX in \u001b[38;5;227mpoisson_solvers.c\u001b[0;36m:\u001b[38;5;192msolve_poisson_DFT\u001b[0;36m:\u001b[0;32m106\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08c1b190 for AUX in \u001b[38;5;227mpoisson_solvers.c\u001b[0;36m:\u001b[38;5;192msolve_poisson_DFT\u001b[0;36m:\u001b[0;32m116\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]====|Getting gravitational potential, periodic boundary conditions (using 32 cores) done.\n",
"[02:24:45\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]====|Kicking particles (using 32 cores)...\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mnkick=9\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mndrift=9\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246maiKick=0.453750\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246maDrift=0.477500\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mafKick=0.501250\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mbeta_delta=-0.051639\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mbeta_lpt_1=0.000000\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mbeta_lpt_2=0.000000\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mbeta_ext=0.000000\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated memory (1048576 bytes) at 0x55cb08c1b190 for g_pad in \u001b[38;5;227mpmcola.c\u001b[0;36m:\u001b[38;5;192mkick_pm_cola\u001b[0;36m:\u001b[0;32m478\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated memory (393216 bytes) at 0x55cb08d1b1a0 for pp in \u001b[38;5;227mpmcola.c\u001b[0;36m:\u001b[38;5;192mkick_pm_cola\u001b[0;36m:\u001b[0;32m554\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Computing short-range forces (using 8 tiles and 32 / 32 cores)...\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (8192 bytes) at 0x55cb0882ae90 for tiles in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m57\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb08635220 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb08d7b1b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb08d9b1c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb08dbb1d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb08ddb1e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb08dfb1f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb08e1b200 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb08e3b210 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb08e5b220 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb08e7b230 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb08e9b240 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb08ebb250 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb08edb260 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb08efb270 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb08f1b280 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb08f3b290 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb08f5b2a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb08f7b2b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb08f9b2c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb08fbb2d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb08fdb2e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb08ffb2f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0901b300 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0903b310 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0905b320 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0907b330 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0909b340 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb090bb350 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb090db360 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb090fb370 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0911b380 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0913b390 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0915b3a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0917b3b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0919b3c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb091bb3d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb091db3e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb091fb3f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0921b400 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0923b410 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0925b420 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0927b430 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0929b440 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb092bb450 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb092db460 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb092fb470 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0931b480 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0933b490 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0935b4a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0937b4b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0939b4c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb093bb4d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb093db4e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb093fb4f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0941b500 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0943b510 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0945b520 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0947b530 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0949b540 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb094bb550 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb094db560 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb094fb570 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0951b580 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0953b590 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0955b5a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0957b5b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0959b5c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb095bb5d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb095db5e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb095fb5f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0961b600 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0963b610 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0965b620 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0967b630 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0969b640 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb096bb650 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb096db660 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb096fb670 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0971b680 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0973b690 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0975b6a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0977b6b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0979b6c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb097bb6d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb097db6e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb097fb6f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0981b700 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0983b710 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0985b720 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0987b730 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0989b740 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb098bb750 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb098db760 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb098fb770 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0991b780 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0993b790 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0995b7a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0997b7b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0999b7c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb099bb7d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb099db7e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb099fb7f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09a1b800 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09a3b810 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09a5b820 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09a7b830 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09a9b840 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09abb850 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09adb860 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09afb870 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09b1b880 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09b3b890 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09b5b8a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09b7b8b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09b9b8c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09bbb8d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09bdb8e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09bfb8f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09c1b900 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09c3b910 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09c5b920 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09c7b930 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09c9b940 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09cbb950 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09cdb960 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09cfb970 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09d1b980 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09d3b990 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09d5b9a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09d7b9b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09d9b9c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09dbb9d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09ddb9e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09dfb9f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09e1ba00 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09e3ba10 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09e5ba20 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09e7ba30 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09e9ba40 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09ebba50 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09edba60 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09efba70 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09f1ba80 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09f3ba90 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09f5baa0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09f7bab0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09f9bac0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09fbbad0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09fdbae0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09ffbaf0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a01bb00 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a03bb10 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a05bb20 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a07bb30 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a09bb40 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a0bbb50 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a0dbb60 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a0fbb70 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a11bb80 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a13bb90 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a15bba0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a17bbb0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a19bbc0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a1bbbd0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a1dbbe0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a1fbbf0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a21bc00 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a23bc10 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a25bc20 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a27bc30 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a29bc40 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a2bbc50 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a2dbc60 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a2fbc70 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a31bc80 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a33bc90 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a35bca0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a37bcb0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a39bcc0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a3bbcd0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a3dbce0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a3fbcf0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a41bd00 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a43bd10 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a45bd20 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a47bd30 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a49bd40 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a4bbd50 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a4dbd60 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a4fbd70 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a51bd80 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a53bd90 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a55bda0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a57bdb0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a59bdc0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a5bbdd0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a5dbde0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a5fbdf0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a61be00 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a63be10 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a65be20 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a67be30 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a69be40 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a6bbe50 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a6dbe60 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a6fbe70 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a71be80 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a73be90 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a75bea0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a77beb0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a79bec0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a7bbed0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a7dbee0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a7fbef0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a81bf00 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a83bf10 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a85bf20 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a87bf30 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a89bf40 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a8bbf50 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a8dbf60 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a8fbf70 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a91bf80 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a93bf90 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a95bfa0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a97bfb0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a99bfc0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a9bbfd0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a9dbfe0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a9fbff0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0aa1c000 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0aa3c010 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0aa5c020 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0aa7c030 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0aa9c040 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0aabc050 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0aadc060 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0aafc070 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ab1c080 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ab3c090 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ab5c0a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ab7c0b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ab9c0c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0abbc0d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0abdc0e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0abfc0f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ac1c100 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ac3c110 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ac5c120 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ac7c130 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ac9c140 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0acbc150 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0acdc160 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0acfc170 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ad1c180 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ad3c190 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ad5c1a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ad7c1b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ad9c1c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0adbc1d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0addc1e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0adfc1f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ae1c200 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ae3c210 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ae5c220 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ae7c230 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ae9c240 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0aebc250 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0aedc260 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0aefc270 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0af1c280 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0af3c290 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0af5c2a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0af7c2b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0af9c2c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0afbc2d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0afdc2e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0affc2f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b01c300 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b03c310 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b05c320 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b07c330 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b09c340 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b0bc350 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b0dc360 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b0fc370 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b11c380 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b13c390 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b15c3a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b17c3b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b19c3c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b1bc3d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b1dc3e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b1fc3f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b21c400 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b23c410 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b25c420 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b27c430 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b29c440 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b2bc450 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b2dc460 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b2fc470 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b31c480 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b33c490 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b35c4a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b37c4b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b39c4c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b3bc4d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b3dc4e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b3fc4f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b41c500 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b43c510 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b45c520 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b47c530 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b49c540 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b4bc550 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b4dc560 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b4fc570 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b51c580 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b53c590 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b55c5a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b57c5b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b59c5c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b5bc5d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b5dc5e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b5fc5f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b61c600 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b63c610 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b65c620 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b67c630 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b69c640 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b6bc650 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b6dc660 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b6fc670 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b71c680 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b73c690 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b75c6a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b77c6b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b79c6c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b7bc6d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b7dc6e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b7fc6f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b81c700 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b83c710 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b85c720 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b87c730 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b89c740 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b8bc750 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b8dc760 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b8fc770 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b91c780 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b93c790 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b95c7a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b97c7b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b99c7c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b9bc7d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b9dc7e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b9fc7f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ba1c800 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ba3c810 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ba5c820 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ba7c830 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ba9c840 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0babc850 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0badc860 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bafc870 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bb1c880 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bb3c890 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bb5c8a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bb7c8b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bb9c8c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bbbc8d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bbdc8e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bbfc8f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bc1c900 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bc3c910 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bc5c920 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bc7c930 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bc9c940 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bcbc950 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bcdc960 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bcfc970 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bd1c980 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bd3c990 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bd5c9a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bd7c9b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bd9c9c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bdbc9d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bddc9e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bdfc9f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0be1ca00 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0be3ca10 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0be5ca20 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0be7ca30 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0be9ca40 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bebca50 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bedca60 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0befca70 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bf1ca80 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bf3ca90 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bf5caa0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bf7cab0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bf9cac0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bfbcad0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bfdcae0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bffcaf0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c01cb00 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c03cb10 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c05cb20 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c07cb30 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c09cb40 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c0bcb50 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c0dcb60 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c0fcb70 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c11cb80 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c13cb90 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c15cba0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c17cbb0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c19cbc0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c1bcbd0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c1dcbe0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c1fcbf0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c21cc00 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c23cc10 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c25cc20 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c27cc30 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c29cc40 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c2bcc50 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c2dcc60 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c2fcc70 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c31cc80 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c33cc90 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c35cca0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c37ccb0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c39ccc0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c3bccd0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c3dcce0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c3fccf0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c41cd00 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c43cd10 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c45cd20 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c47cd30 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c49cd40 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c4bcd50 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c4dcd60 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c4fcd70 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c51cd80 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c53cd90 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c55cda0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c57cdb0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c59cdc0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c5bcdd0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c5dcde0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c5fcdf0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c61ce00 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c63ce10 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c65ce20 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c67ce30 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c69ce40 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c6bce50 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c6dce60 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c6fce70 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c71ce80 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c73ce90 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c75cea0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c77ceb0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c79cec0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c7bced0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c7dcee0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c7fcef0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c81cf00 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c83cf10 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c85cf20 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c87cf30 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c89cf40 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c8bcf50 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c8dcf60 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c8fcf70 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c91cf80 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c93cf90 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c95cfa0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c97cfb0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c99cfc0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c9bcfd0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c9dcfe0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c9fcff0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ca1d000 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ca3d010 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ca5d020 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ca7d030 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ca9d040 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0cabd050 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0cadd060 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0cafd070 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0cb1d080 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0cb3d090 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0cb5d0a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0cb7d0b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0cb9d0c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0cbbd0d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0cbdd0e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0cbfd0f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0cc1d100 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0cc3d110 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0cc5d120 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0cc7d130 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0cc9d140 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ccbd150 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ccdd160 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ccfd170 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0cd1d180 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0cd3d190 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08635220 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08d7b1b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08d9b1c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08dbb1d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08ddb1e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08dfb1f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08e1b200 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08e3b210 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08e5b220 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08e7b230 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08e9b240 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08ebb250 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08edb260 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08efb270 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08f1b280 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08f3b290 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08f5b2a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08f7b2b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08f9b2c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08fbb2d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08fdb2e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08ffb2f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0901b300 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0903b310 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0905b320 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0907b330 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0909b340 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb090bb350 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb090db360 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb090fb370 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0911b380 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0913b390 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0915b3a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0917b3b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0919b3c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb091bb3d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb091db3e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb091fb3f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0921b400 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0923b410 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0925b420 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0927b430 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0929b440 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb092bb450 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb092db460 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb092fb470 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0931b480 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0933b490 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0935b4a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0937b4b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0939b4c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb093bb4d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb093db4e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb093fb4f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0941b500 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0943b510 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0945b520 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0947b530 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0949b540 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb094bb550 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb094db560 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb094fb570 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0951b580 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0953b590 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0955b5a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0957b5b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0959b5c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb095bb5d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb095db5e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb095fb5f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0961b600 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0963b610 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0965b620 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0967b630 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0969b640 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb096bb650 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb096db660 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb096fb670 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0971b680 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0973b690 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0975b6a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0977b6b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0979b6c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb097bb6d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb097db6e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb097fb6f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0981b700 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0983b710 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0985b720 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0987b730 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0989b740 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb098bb750 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb098db760 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb098fb770 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0991b780 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0993b790 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0995b7a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0997b7b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0999b7c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb099bb7d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb099db7e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb099fb7f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09a1b800 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09a3b810 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09a5b820 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09a7b830 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09a9b840 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09abb850 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09adb860 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09afb870 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09b1b880 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09b3b890 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09b5b8a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09b7b8b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09b9b8c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09bbb8d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09bdb8e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09bfb8f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09c1b900 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09c3b910 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09c5b920 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09c7b930 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09c9b940 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09cbb950 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09cdb960 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09cfb970 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09d1b980 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09d3b990 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09d5b9a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09d7b9b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09d9b9c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09dbb9d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09ddb9e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09dfb9f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09e1ba00 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09e3ba10 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09e5ba20 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09e7ba30 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09e9ba40 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09ebba50 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09edba60 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09efba70 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09f1ba80 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09f3ba90 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09f5baa0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09f7bab0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09f9bac0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09fbbad0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09fdbae0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09ffbaf0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a01bb00 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a03bb10 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a05bb20 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a07bb30 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a09bb40 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a0bbb50 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a0dbb60 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a0fbb70 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a11bb80 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a13bb90 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a15bba0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a17bbb0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a19bbc0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a1bbbd0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a1dbbe0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a1fbbf0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a21bc00 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a23bc10 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a25bc20 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a27bc30 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a29bc40 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a2bbc50 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a2dbc60 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a2fbc70 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a31bc80 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a33bc90 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a35bca0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a37bcb0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a39bcc0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a3bbcd0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a3dbce0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a3fbcf0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a41bd00 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a43bd10 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a45bd20 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a47bd30 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a49bd40 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a4bbd50 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a4dbd60 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a4fbd70 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a51bd80 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a53bd90 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a55bda0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a57bdb0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a59bdc0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a5bbdd0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a5dbde0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a5fbdf0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a61be00 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a63be10 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a65be20 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a67be30 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a69be40 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a6bbe50 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a6dbe60 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a6fbe70 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a71be80 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a73be90 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a75bea0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a77beb0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a79bec0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a7bbed0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a7dbee0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a7fbef0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a81bf00 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a83bf10 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a85bf20 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a87bf30 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a89bf40 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a8bbf50 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a8dbf60 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a8fbf70 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a91bf80 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a93bf90 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a95bfa0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a97bfb0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a99bfc0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a9bbfd0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a9dbfe0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a9fbff0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0aa1c000 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0aa3c010 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0aa5c020 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0aa7c030 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0aa9c040 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0aabc050 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0aadc060 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0aafc070 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ab1c080 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ab3c090 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ab5c0a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ab7c0b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ab9c0c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0abbc0d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0abdc0e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0abfc0f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ac1c100 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ac3c110 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ac5c120 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ac7c130 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ac9c140 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0acbc150 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0acdc160 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0acfc170 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ad1c180 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ad3c190 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ad5c1a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ad7c1b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ad9c1c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0adbc1d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0addc1e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0adfc1f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ae1c200 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ae3c210 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ae5c220 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ae7c230 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ae9c240 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0aebc250 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0aedc260 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0aefc270 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0af1c280 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0af3c290 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0af5c2a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0af7c2b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0af9c2c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0afbc2d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0afdc2e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0affc2f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b01c300 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b03c310 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b05c320 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b07c330 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b09c340 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b0bc350 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b0dc360 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b0fc370 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b11c380 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b13c390 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b15c3a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b17c3b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b19c3c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b1bc3d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b1dc3e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b1fc3f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b21c400 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b23c410 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b25c420 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b27c430 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b29c440 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b2bc450 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b2dc460 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b2fc470 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b31c480 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b33c490 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b35c4a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b37c4b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b39c4c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b3bc4d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b3dc4e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b3fc4f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b41c500 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b43c510 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b45c520 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b47c530 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b49c540 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b4bc550 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b4dc560 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b4fc570 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b51c580 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b53c590 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b55c5a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b57c5b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b59c5c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b5bc5d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b5dc5e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b5fc5f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b61c600 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b63c610 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b65c620 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b67c630 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b69c640 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b6bc650 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b6dc660 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b6fc670 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b71c680 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b73c690 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b75c6a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b77c6b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b79c6c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b7bc6d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b7dc6e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b7fc6f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b81c700 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b83c710 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b85c720 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b87c730 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b89c740 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b8bc750 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b8dc760 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b8fc770 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b91c780 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b93c790 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b95c7a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b97c7b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b99c7c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b9bc7d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b9dc7e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b9fc7f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ba1c800 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ba3c810 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ba5c820 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ba7c830 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ba9c840 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0babc850 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0badc860 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bafc870 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bb1c880 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bb3c890 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bb5c8a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bb7c8b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bb9c8c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bbbc8d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bbdc8e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bbfc8f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bc1c900 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bc3c910 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bc5c920 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bc7c930 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bc9c940 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bcbc950 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bcdc960 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bcfc970 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bd1c980 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bd3c990 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bd5c9a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bd7c9b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bd9c9c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bdbc9d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bddc9e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bdfc9f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0be1ca00 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0be3ca10 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0be5ca20 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0be7ca30 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0be9ca40 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bebca50 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bedca60 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0befca70 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bf1ca80 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bf3ca90 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bf5caa0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bf7cab0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bf9cac0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bfbcad0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bfdcae0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bffcaf0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c01cb00 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c03cb10 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c05cb20 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c07cb30 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c09cb40 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c0bcb50 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c0dcb60 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c0fcb70 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c11cb80 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c13cb90 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c15cba0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c17cbb0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c19cbc0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c1bcbd0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c1dcbe0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c1fcbf0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c21cc00 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c23cc10 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c25cc20 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c27cc30 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c29cc40 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c2bcc50 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c2dcc60 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c2fcc70 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c31cc80 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c33cc90 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c35cca0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c37ccb0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c39ccc0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c3bccd0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c3dcce0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c3fccf0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c41cd00 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c43cd10 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c45cd20 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c47cd30 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c49cd40 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c4bcd50 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c4dcd60 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c4fcd70 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c51cd80 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c53cd90 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c55cda0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c57cdb0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c59cdc0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c5bcdd0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c5dcde0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c5fcdf0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c61ce00 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c63ce10 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c65ce20 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c67ce30 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c69ce40 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c6bce50 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c6dce60 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c6fce70 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c71ce80 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c73ce90 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c75cea0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c77ceb0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c79cec0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c7bced0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c7dcee0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c7fcef0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c81cf00 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c83cf10 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c85cf20 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c87cf30 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c89cf40 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c8bcf50 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c8dcf60 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c8fcf70 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c91cf80 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c93cf90 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c95cfa0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c97cfb0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c99cfc0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c9bcfd0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c9dcfe0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c9fcff0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ca1d000 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ca3d010 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ca5d020 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ca7d030 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ca9d040 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0cabd050 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0cadd060 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0cafd070 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0cb1d080 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0cb3d090 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0cb5d0a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0cb7d0b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0cb9d0c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0cbbd0d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0cbdd0e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0cbfd0f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0cc1d100 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0cc3d110 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0cc5d120 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0cc7d130 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0cc9d140 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ccbd150 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ccdd160 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ccfd170 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0cd1d180 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0cd3d190 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0882ae90 for tiles in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m211\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Computing short-range forces (using 8 tiles and 32 / 32 cores) done.\n",
"[02:24:45\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Acceleration loop, direction 0...\n",
"[02:24:45\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Acceleration loop, direction 0 done.\n",
"[02:24:45\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Kick loop, direction 0...\n",
"[02:24:45\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Kick loop, direction 0 done.\n",
"[02:24:45\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Acceleration loop, direction 1...\n",
"[02:24:45\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Acceleration loop, direction 1 done.\n",
"[02:24:45\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Kick loop, direction 1...\n",
"[02:24:45\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Kick loop, direction 1 done.\n",
"[02:24:45\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Acceleration loop, direction 2...\n",
"[02:24:45\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Acceleration loop, direction 2 done.\n",
"[02:24:45\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Kick loop, direction 2...\n",
"[02:24:45\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Kick loop, direction 2 done.\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08c1b190 for g_pad in \u001b[38;5;227mpmcola.c\u001b[0;36m:\u001b[38;5;192mkick_pm_cola\u001b[0;36m:\u001b[0;32m592\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08d1b1a0 for pp in \u001b[38;5;227mpmcola.c\u001b[0;36m:\u001b[38;5;192mkick_pm_cola\u001b[0;36m:\u001b[0;32m598\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]====|Kicking particles (using 32 cores) done.\n",
"[02:24:45\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]====|Drifting particles (using 32 cores)...\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mndrift=9\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mnkick=9\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246maiDrift=0.477500\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246maKick=0.501250\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mafDrift=0.525000\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246malpha_p=0.212551\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246malpha_lpt_1=0.000000\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246malpha_lpt_2=0.000000\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246malpha_ext=0.000000\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Drift loop, direction 0...\n",
"[02:24:45\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Drift loop, direction 0 done.\n",
"[02:24:45\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Drift loop, direction 1...\n",
"[02:24:45\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Drift loop, direction 1 done.\n",
"[02:24:45\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Drift loop, direction 2...\n",
"[02:24:45\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Drift loop, direction 2 done.\n",
"[02:24:45\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]====|Drifting particles (using 32 cores) done.\n",
"[02:24:45\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]==|ModuleP3M: End P3M step 10/20, time_kick:0.501250, time_drift=0.525000.\n",
"[02:24:45\u001b[00m|\u001b[38;5;159mTIMER \u001b[00m]==|Step 10/20: Density: 2.435 CPU - 0.080 wallclock seconds used.\n",
"[02:24:45\u001b[00m|\u001b[38;5;159mTIMER \u001b[00m]==|Step 10/20: Potential: 0.448 CPU - 0.022 wallclock seconds used.\n",
"[02:24:45\u001b[00m|\u001b[38;5;159mTIMER \u001b[00m]==|Step 10/20: Accelerations (long-range): 1.077 CPU - 0.038 wallclock seconds used.\n",
"[02:24:45\u001b[00m|\u001b[38;5;159mTIMER \u001b[00m]==|Step 10/20: Accelerations (short-range): 2.299 CPU - 0.146 wallclock seconds used.\n",
"[02:24:45\u001b[00m|\u001b[38;5;159mTIMER \u001b[00m]==|Step 10/20: Kick: 1.172 CPU - 0.039 wallclock seconds used.\n",
"[02:24:45\u001b[00m|\u001b[38;5;159mTIMER \u001b[00m]==|Step 10/20: Drift: 2.279 CPU - 0.075 wallclock seconds used.\n",
"[02:24:45\u001b[00m|\u001b[38;5;159mTIMER \u001b[00m]==|Step 10/20: Inputs: 0.000 CPU - 0.000 wallclock seconds used.\n",
"[02:24:45\u001b[00m|\u001b[38;5;159mTIMER \u001b[00m]==|Step 10/20: Diagnostic: 0.000 CPU - 0.000 wallclock seconds used.\n",
"[02:24:45\u001b[00m|\u001b[38;5;159mTIMER \u001b[00m]==|Step 10/20: Outputs: 0.000 CPU - 0.000 wallclock seconds used.\n",
"[02:24:45\u001b[00m|\u001b[38;5;159mTIMER \u001b[00m]==|Step 10/20: Total Evolution: 9.711 CPU - 0.399 wallclock seconds used.\n",
"[02:24:45\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]==|ModuleP3M: Begin P3M step 11/20, time_kick:0.501250, time_drift=0.525000.\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]====|\u001b[38;5;246mGiven the available memory, 4095 threads could be allocated and 32 threads will be used in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel\u001b[0;36m:\u001b[0;32m347\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]====|\u001b[38;5;246mGiven the available memory, 4095 threads could be allocated and 32 threads will be used in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m73\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]====|Getting density contrast (using 32 cores and 32 arrays, parallel routine 1)...\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]======|\u001b[38;5;246mPerforming CiC binning...\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 0...\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148960000b60 for threadedDensity[13] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148988000b60 for threadedDensity[28] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 13...\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 28...\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1488d0000b60 for threadedDensity[5] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148940000b60 for threadedDensity[27] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 5...\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 27...\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148978000b60 for threadedDensity[26] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148920000b60 for threadedDensity[12] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 26...\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 12...\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1488dc000b60 for threadedDensity[17] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148900000b60 for threadedDensity[16] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 17...\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 16...\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148958000b60 for threadedDensity[22] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1488f0000b60 for threadedDensity[24] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 22...\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 24...\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1488e0000b60 for threadedDensity[6] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148968000b60 for threadedDensity[10] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 6...\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 10...\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148998000b60 for threadedDensity[25] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1488e8000b60 for threadedDensity[2] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 25...\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 2...\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1489b0000b60 for threadedDensity[1] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148948000b60 for threadedDensity[31] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 1...\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 31...\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148910000b60 for threadedDensity[23] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1489a8000b60 for threadedDensity[30] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 23...\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 30...\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148938000b60 for threadedDensity[18] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148930000b60 for threadedDensity[14] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148918000b60 for threadedDensity[15] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 14...\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 15...\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 18...\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148970000b60 for threadedDensity[7] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1489a0000b60 for threadedDensity[3] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 7...\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 3...\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148980000b60 for threadedDensity[11] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1488f8000b60 for threadedDensity[19] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1488d8000b60 for threadedDensity[29] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 19...\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 29...\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148928000b60 for threadedDensity[20] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 11...\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148908000b60 for threadedDensity[8] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1489b8000b60 for threadedDensity[4] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 20...\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 4...\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 8...\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148990000b60 for threadedDensity[21] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 21...\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148950000b60 for threadedDensity[9] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 9...\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 0 done.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 10 done.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 6 done.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 2 done.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 25 done.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 17 done.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 16 done.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 22 done.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 24 done.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 31 done.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 1 done.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 18 done.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 23 done.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 30 done.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 14 done.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 15 done.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 3 done.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 7 done.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 5 done.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 27 done.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 12 done.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 26 done.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 11 done.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 4 done.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 28 done.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 13 done.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 19 done.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 29 done.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 8 done.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 21 done.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 9 done.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 20 done.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]======|\u001b[38;5;246mPerforming CiC done.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]======|\u001b[38;5;246mPerforming CiC reduction...\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x1489b0000b60 for threadedDensity[1] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:45\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x1488e8000b60 for threadedDensity[2] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x1489a0000b60 for threadedDensity[3] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x1489b8000b60 for threadedDensity[4] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x1488d0000b60 for threadedDensity[5] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x1488e0000b60 for threadedDensity[6] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148970000b60 for threadedDensity[7] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148908000b60 for threadedDensity[8] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148950000b60 for threadedDensity[9] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148968000b60 for threadedDensity[10] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148980000b60 for threadedDensity[11] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148920000b60 for threadedDensity[12] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148960000b60 for threadedDensity[13] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148930000b60 for threadedDensity[14] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148918000b60 for threadedDensity[15] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148900000b60 for threadedDensity[16] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x1488dc000b60 for threadedDensity[17] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148938000b60 for threadedDensity[18] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x1488f8000b60 for threadedDensity[19] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148928000b60 for threadedDensity[20] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148990000b60 for threadedDensity[21] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148958000b60 for threadedDensity[22] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148910000b60 for threadedDensity[23] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x1488f0000b60 for threadedDensity[24] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148998000b60 for threadedDensity[25] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148978000b60 for threadedDensity[26] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148940000b60 for threadedDensity[27] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148988000b60 for threadedDensity[28] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x1488d8000b60 for threadedDensity[29] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x1489a8000b60 for threadedDensity[30] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148948000b60 for threadedDensity[31] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]======|\u001b[38;5;246mPerforming CiC reduction done.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]====|Getting density contrast (using 32 cores and 32 arrays, parallel routine 1) done.\n",
"[02:24:46\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]====|Getting gravitational potential, periodic boundary conditions (using 32 cores)...\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated memory (1081344 bytes) at 0x55cb08c1b190 for AUX in \u001b[38;5;227mpoisson_solvers.c\u001b[0;36m:\u001b[38;5;192msolve_poisson_DFT\u001b[0;36m:\u001b[0;32m106\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08c1b190 for AUX in \u001b[38;5;227mpoisson_solvers.c\u001b[0;36m:\u001b[38;5;192msolve_poisson_DFT\u001b[0;36m:\u001b[0;32m116\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]====|Getting gravitational potential, periodic boundary conditions (using 32 cores) done.\n",
"[02:24:46\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]====|Kicking particles (using 32 cores)...\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mnkick=10\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mndrift=10\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246maiKick=0.501250\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246maDrift=0.525000\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mafKick=0.548750\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mbeta_delta=-0.047743\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mbeta_lpt_1=0.000000\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mbeta_lpt_2=0.000000\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mbeta_ext=0.000000\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated memory (1048576 bytes) at 0x55cb08c1b190 for g_pad in \u001b[38;5;227mpmcola.c\u001b[0;36m:\u001b[38;5;192mkick_pm_cola\u001b[0;36m:\u001b[0;32m478\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated memory (393216 bytes) at 0x55cb08d1b1a0 for pp in \u001b[38;5;227mpmcola.c\u001b[0;36m:\u001b[38;5;192mkick_pm_cola\u001b[0;36m:\u001b[0;32m554\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Computing short-range forces (using 8 tiles and 32 / 32 cores)...\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (8192 bytes) at 0x55cb087c3ea0 for tiles in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m57\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb08635220 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb08d7b1b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb08d9b1c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb08dbb1d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb08ddb1e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb08dfb1f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb08e1b200 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb08e3b210 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb08e5b220 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb08e7b230 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb08e9b240 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb08ebb250 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb08edb260 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb08efb270 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb08f1b280 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb08f3b290 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb08f5b2a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb08f7b2b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb08f9b2c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb08fbb2d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb08fdb2e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb08ffb2f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0901b300 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0903b310 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0905b320 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0907b330 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0909b340 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb090bb350 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb090db360 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb090fb370 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0911b380 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0913b390 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0915b3a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0917b3b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0919b3c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb091bb3d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb091db3e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb091fb3f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0921b400 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0923b410 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0925b420 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0927b430 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0929b440 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb092bb450 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb092db460 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb092fb470 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0931b480 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0933b490 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0935b4a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0937b4b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0939b4c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb093bb4d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb093db4e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb093fb4f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0941b500 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0943b510 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0945b520 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0947b530 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0949b540 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb094bb550 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb094db560 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb094fb570 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0951b580 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0953b590 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0955b5a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0957b5b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0959b5c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb095bb5d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb095db5e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb095fb5f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0961b600 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0963b610 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0965b620 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0967b630 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0969b640 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb096bb650 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb096db660 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb096fb670 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0971b680 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0973b690 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0975b6a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0977b6b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0979b6c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb097bb6d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb097db6e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb097fb6f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0981b700 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0983b710 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0985b720 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0987b730 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0989b740 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb098bb750 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb098db760 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb098fb770 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0991b780 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0993b790 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0995b7a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0997b7b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0999b7c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb099bb7d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb099db7e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb099fb7f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09a1b800 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09a3b810 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09a5b820 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09a7b830 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09a9b840 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09abb850 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09adb860 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09afb870 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09b1b880 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09b3b890 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09b5b8a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09b7b8b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09b9b8c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09bbb8d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09bdb8e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09bfb8f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09c1b900 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09c3b910 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09c5b920 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09c7b930 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09c9b940 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09cbb950 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09cdb960 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09cfb970 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09d1b980 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09d3b990 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09d5b9a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09d7b9b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09d9b9c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09dbb9d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09ddb9e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09dfb9f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09e1ba00 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09e3ba10 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09e5ba20 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09e7ba30 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09e9ba40 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09ebba50 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09edba60 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09efba70 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09f1ba80 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09f3ba90 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09f5baa0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09f7bab0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09f9bac0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09fbbad0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09fdbae0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09ffbaf0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a01bb00 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a03bb10 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a05bb20 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a07bb30 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a09bb40 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a0bbb50 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a0dbb60 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a0fbb70 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a11bb80 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a13bb90 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a15bba0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a17bbb0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a19bbc0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a1bbbd0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a1dbbe0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a1fbbf0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a21bc00 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a23bc10 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a25bc20 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a27bc30 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a29bc40 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a2bbc50 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a2dbc60 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a2fbc70 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a31bc80 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a33bc90 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a35bca0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a37bcb0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a39bcc0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a3bbcd0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a3dbce0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a3fbcf0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a41bd00 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a43bd10 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a45bd20 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a47bd30 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a49bd40 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a4bbd50 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a4dbd60 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a4fbd70 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a51bd80 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a53bd90 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a55bda0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a57bdb0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a59bdc0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a5bbdd0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a5dbde0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a5fbdf0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a61be00 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a63be10 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a65be20 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a67be30 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a69be40 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a6bbe50 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a6dbe60 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a6fbe70 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a71be80 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a73be90 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a75bea0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a77beb0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a79bec0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a7bbed0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a7dbee0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a7fbef0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a81bf00 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a83bf10 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a85bf20 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a87bf30 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a89bf40 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a8bbf50 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a8dbf60 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a8fbf70 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a91bf80 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a93bf90 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a95bfa0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a97bfb0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a99bfc0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a9bbfd0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a9dbfe0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a9fbff0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0aa1c000 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0aa3c010 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0aa5c020 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0aa7c030 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0aa9c040 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0aabc050 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0aadc060 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0aafc070 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ab1c080 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ab3c090 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ab5c0a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ab7c0b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ab9c0c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0abbc0d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0abdc0e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0abfc0f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ac1c100 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ac3c110 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ac5c120 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ac7c130 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ac9c140 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0acbc150 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0acdc160 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0acfc170 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ad1c180 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ad3c190 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ad5c1a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ad7c1b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ad9c1c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0adbc1d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0addc1e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0adfc1f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ae1c200 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ae3c210 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ae5c220 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ae7c230 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ae9c240 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0aebc250 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0aedc260 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0aefc270 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0af1c280 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0af3c290 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0af5c2a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0af7c2b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0af9c2c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0afbc2d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0afdc2e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0affc2f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b01c300 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b03c310 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b05c320 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b07c330 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b09c340 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b0bc350 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b0dc360 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b0fc370 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b11c380 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b13c390 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b15c3a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b17c3b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b19c3c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b1bc3d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b1dc3e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b1fc3f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b21c400 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b23c410 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b25c420 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b27c430 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b29c440 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b2bc450 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b2dc460 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b2fc470 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b31c480 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b33c490 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b35c4a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b37c4b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b39c4c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b3bc4d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b3dc4e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b3fc4f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b41c500 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b43c510 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b45c520 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b47c530 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b49c540 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b4bc550 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b4dc560 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b4fc570 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b51c580 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b53c590 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b55c5a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b57c5b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b59c5c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b5bc5d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b5dc5e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b5fc5f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b61c600 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b63c610 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b65c620 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b67c630 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b69c640 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b6bc650 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b6dc660 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b6fc670 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b71c680 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b73c690 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b75c6a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b77c6b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b79c6c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b7bc6d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b7dc6e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b7fc6f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b81c700 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b83c710 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b85c720 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b87c730 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b89c740 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b8bc750 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b8dc760 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b8fc770 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b91c780 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b93c790 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b95c7a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b97c7b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b99c7c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b9bc7d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b9dc7e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b9fc7f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ba1c800 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ba3c810 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ba5c820 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ba7c830 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ba9c840 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0babc850 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0badc860 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bafc870 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bb1c880 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bb3c890 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bb5c8a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bb7c8b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bb9c8c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bbbc8d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bbdc8e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bbfc8f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bc1c900 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bc3c910 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bc5c920 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bc7c930 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bc9c940 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bcbc950 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bcdc960 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bcfc970 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bd1c980 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bd3c990 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bd5c9a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bd7c9b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bd9c9c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bdbc9d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bddc9e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bdfc9f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0be1ca00 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0be3ca10 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0be5ca20 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0be7ca30 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0be9ca40 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bebca50 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bedca60 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0befca70 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bf1ca80 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bf3ca90 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bf5caa0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bf7cab0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bf9cac0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bfbcad0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bfdcae0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bffcaf0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c01cb00 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c03cb10 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c05cb20 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c07cb30 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c09cb40 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c0bcb50 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c0dcb60 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c0fcb70 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c11cb80 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c13cb90 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c15cba0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c17cbb0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c19cbc0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c1bcbd0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c1dcbe0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c1fcbf0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c21cc00 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c23cc10 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c25cc20 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c27cc30 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c29cc40 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c2bcc50 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c2dcc60 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c2fcc70 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c31cc80 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c33cc90 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c35cca0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c37ccb0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c39ccc0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c3bccd0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c3dcce0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c3fccf0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c41cd00 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c43cd10 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c45cd20 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c47cd30 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c49cd40 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c4bcd50 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c4dcd60 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c4fcd70 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c51cd80 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c53cd90 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c55cda0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c57cdb0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c59cdc0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c5bcdd0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c5dcde0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c5fcdf0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c61ce00 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c63ce10 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c65ce20 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c67ce30 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c69ce40 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c6bce50 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c6dce60 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c6fce70 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c71ce80 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c73ce90 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c75cea0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c77ceb0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c79cec0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c7bced0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c7dcee0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c7fcef0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c81cf00 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c83cf10 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c85cf20 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c87cf30 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c89cf40 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c8bcf50 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c8dcf60 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c8fcf70 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c91cf80 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c93cf90 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c95cfa0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c97cfb0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c99cfc0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c9bcfd0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c9dcfe0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c9fcff0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ca1d000 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ca3d010 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ca5d020 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ca7d030 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ca9d040 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0cabd050 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0cadd060 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0cafd070 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0cb1d080 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0cb3d090 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0cb5d0a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0cb7d0b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0cb9d0c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0cbbd0d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0cbdd0e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0cbfd0f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0cc1d100 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0cc3d110 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0cc5d120 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0cc7d130 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0cc9d140 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ccbd150 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ccdd160 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ccfd170 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0cd1d180 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0cd3d190 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08635220 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08d7b1b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08d9b1c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08dbb1d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08ddb1e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08dfb1f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08e1b200 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08e3b210 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08e5b220 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08e7b230 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08e9b240 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08ebb250 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08edb260 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08efb270 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08f1b280 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08f3b290 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08f5b2a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08f7b2b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08f9b2c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08fbb2d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08fdb2e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08ffb2f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0901b300 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0903b310 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0905b320 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0907b330 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0909b340 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb090bb350 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb090db360 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb090fb370 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0911b380 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0913b390 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0915b3a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0917b3b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0919b3c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb091bb3d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb091db3e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb091fb3f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0921b400 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0923b410 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0925b420 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0927b430 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0929b440 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb092bb450 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb092db460 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb092fb470 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0931b480 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0933b490 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0935b4a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0937b4b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0939b4c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb093bb4d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb093db4e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb093fb4f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0941b500 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0943b510 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0945b520 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0947b530 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0949b540 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb094bb550 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb094db560 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb094fb570 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0951b580 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0953b590 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0955b5a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0957b5b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0959b5c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb095bb5d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb095db5e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb095fb5f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0961b600 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0963b610 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0965b620 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0967b630 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0969b640 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb096bb650 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb096db660 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb096fb670 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0971b680 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0973b690 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0975b6a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0977b6b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0979b6c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb097bb6d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb097db6e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb097fb6f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0981b700 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0983b710 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0985b720 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0987b730 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0989b740 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb098bb750 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb098db760 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb098fb770 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0991b780 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0993b790 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0995b7a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0997b7b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0999b7c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb099bb7d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb099db7e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb099fb7f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09a1b800 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09a3b810 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09a5b820 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09a7b830 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09a9b840 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09abb850 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09adb860 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09afb870 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09b1b880 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09b3b890 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09b5b8a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09b7b8b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09b9b8c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09bbb8d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09bdb8e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09bfb8f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09c1b900 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09c3b910 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09c5b920 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09c7b930 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09c9b940 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09cbb950 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09cdb960 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09cfb970 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09d1b980 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09d3b990 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09d5b9a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09d7b9b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09d9b9c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09dbb9d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09ddb9e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09dfb9f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09e1ba00 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09e3ba10 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09e5ba20 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09e7ba30 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09e9ba40 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09ebba50 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09edba60 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09efba70 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09f1ba80 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09f3ba90 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09f5baa0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09f7bab0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09f9bac0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09fbbad0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09fdbae0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09ffbaf0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a01bb00 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a03bb10 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a05bb20 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a07bb30 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a09bb40 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a0bbb50 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a0dbb60 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a0fbb70 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a11bb80 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a13bb90 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a15bba0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a17bbb0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a19bbc0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a1bbbd0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a1dbbe0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a1fbbf0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a21bc00 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a23bc10 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a25bc20 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a27bc30 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a29bc40 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a2bbc50 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a2dbc60 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a2fbc70 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a31bc80 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a33bc90 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a35bca0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a37bcb0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a39bcc0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a3bbcd0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a3dbce0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a3fbcf0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a41bd00 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a43bd10 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a45bd20 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a47bd30 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a49bd40 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a4bbd50 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a4dbd60 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a4fbd70 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a51bd80 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a53bd90 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a55bda0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a57bdb0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a59bdc0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a5bbdd0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a5dbde0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a5fbdf0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a61be00 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a63be10 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a65be20 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a67be30 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a69be40 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a6bbe50 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a6dbe60 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a6fbe70 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a71be80 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a73be90 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a75bea0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a77beb0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a79bec0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a7bbed0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a7dbee0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a7fbef0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a81bf00 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a83bf10 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a85bf20 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a87bf30 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a89bf40 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a8bbf50 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a8dbf60 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a8fbf70 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a91bf80 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a93bf90 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a95bfa0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a97bfb0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a99bfc0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a9bbfd0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a9dbfe0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a9fbff0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0aa1c000 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0aa3c010 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0aa5c020 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0aa7c030 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0aa9c040 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0aabc050 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0aadc060 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0aafc070 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ab1c080 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ab3c090 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ab5c0a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ab7c0b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ab9c0c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0abbc0d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0abdc0e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0abfc0f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ac1c100 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ac3c110 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ac5c120 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ac7c130 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ac9c140 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0acbc150 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0acdc160 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0acfc170 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ad1c180 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ad3c190 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ad5c1a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ad7c1b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ad9c1c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0adbc1d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0addc1e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0adfc1f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ae1c200 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ae3c210 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ae5c220 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ae7c230 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ae9c240 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0aebc250 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0aedc260 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0aefc270 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0af1c280 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0af3c290 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0af5c2a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0af7c2b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0af9c2c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0afbc2d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0afdc2e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0affc2f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b01c300 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b03c310 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b05c320 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b07c330 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b09c340 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b0bc350 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b0dc360 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b0fc370 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b11c380 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b13c390 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b15c3a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b17c3b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b19c3c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b1bc3d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b1dc3e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b1fc3f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b21c400 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b23c410 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b25c420 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b27c430 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b29c440 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b2bc450 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b2dc460 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b2fc470 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b31c480 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b33c490 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b35c4a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b37c4b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b39c4c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b3bc4d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b3dc4e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b3fc4f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b41c500 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b43c510 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b45c520 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b47c530 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b49c540 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b4bc550 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b4dc560 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b4fc570 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b51c580 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b53c590 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b55c5a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b57c5b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b59c5c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b5bc5d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b5dc5e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b5fc5f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b61c600 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b63c610 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b65c620 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b67c630 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b69c640 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b6bc650 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b6dc660 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b6fc670 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b71c680 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b73c690 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b75c6a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b77c6b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b79c6c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b7bc6d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b7dc6e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b7fc6f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b81c700 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b83c710 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b85c720 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b87c730 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b89c740 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b8bc750 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b8dc760 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b8fc770 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b91c780 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b93c790 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b95c7a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b97c7b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b99c7c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b9bc7d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b9dc7e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b9fc7f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ba1c800 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ba3c810 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ba5c820 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ba7c830 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ba9c840 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0babc850 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0badc860 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bafc870 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bb1c880 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bb3c890 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bb5c8a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bb7c8b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bb9c8c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bbbc8d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bbdc8e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bbfc8f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bc1c900 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bc3c910 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bc5c920 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bc7c930 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bc9c940 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bcbc950 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bcdc960 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bcfc970 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bd1c980 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bd3c990 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bd5c9a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bd7c9b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bd9c9c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bdbc9d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bddc9e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bdfc9f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0be1ca00 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0be3ca10 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0be5ca20 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0be7ca30 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0be9ca40 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bebca50 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bedca60 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0befca70 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bf1ca80 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bf3ca90 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bf5caa0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bf7cab0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bf9cac0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bfbcad0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bfdcae0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bffcaf0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c01cb00 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c03cb10 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c05cb20 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c07cb30 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c09cb40 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c0bcb50 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c0dcb60 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c0fcb70 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c11cb80 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c13cb90 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c15cba0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c17cbb0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c19cbc0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c1bcbd0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c1dcbe0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c1fcbf0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c21cc00 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c23cc10 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c25cc20 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c27cc30 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c29cc40 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c2bcc50 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c2dcc60 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c2fcc70 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c31cc80 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c33cc90 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c35cca0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c37ccb0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c39ccc0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c3bccd0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c3dcce0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c3fccf0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c41cd00 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c43cd10 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c45cd20 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c47cd30 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c49cd40 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c4bcd50 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c4dcd60 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c4fcd70 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c51cd80 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c53cd90 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c55cda0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c57cdb0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c59cdc0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c5bcdd0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c5dcde0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c5fcdf0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c61ce00 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c63ce10 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c65ce20 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c67ce30 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c69ce40 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c6bce50 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c6dce60 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c6fce70 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c71ce80 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c73ce90 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c75cea0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c77ceb0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c79cec0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c7bced0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c7dcee0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c7fcef0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c81cf00 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c83cf10 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c85cf20 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c87cf30 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c89cf40 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c8bcf50 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c8dcf60 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c8fcf70 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c91cf80 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c93cf90 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c95cfa0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c97cfb0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c99cfc0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c9bcfd0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c9dcfe0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c9fcff0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ca1d000 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ca3d010 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ca5d020 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ca7d030 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ca9d040 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0cabd050 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0cadd060 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0cafd070 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0cb1d080 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0cb3d090 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0cb5d0a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0cb7d0b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0cb9d0c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0cbbd0d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0cbdd0e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0cbfd0f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0cc1d100 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0cc3d110 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0cc5d120 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0cc7d130 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0cc9d140 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ccbd150 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ccdd160 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ccfd170 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0cd1d180 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0cd3d190 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb087c3ea0 for tiles in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m211\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Computing short-range forces (using 8 tiles and 32 / 32 cores) done.\n",
"[02:24:46\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Acceleration loop, direction 0...\n",
"[02:24:46\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Acceleration loop, direction 0 done.\n",
"[02:24:46\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Kick loop, direction 0...\n",
"[02:24:46\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Kick loop, direction 0 done.\n",
"[02:24:46\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Acceleration loop, direction 1...\n",
"[02:24:46\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Acceleration loop, direction 1 done.\n",
"[02:24:46\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Kick loop, direction 1...\n",
"[02:24:46\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Kick loop, direction 1 done.\n",
"[02:24:46\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Acceleration loop, direction 2...\n",
"[02:24:46\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Acceleration loop, direction 2 done.\n",
"[02:24:46\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Kick loop, direction 2...\n",
"[02:24:46\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Kick loop, direction 2 done.\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08c1b190 for g_pad in \u001b[38;5;227mpmcola.c\u001b[0;36m:\u001b[38;5;192mkick_pm_cola\u001b[0;36m:\u001b[0;32m592\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08d1b1a0 for pp in \u001b[38;5;227mpmcola.c\u001b[0;36m:\u001b[38;5;192mkick_pm_cola\u001b[0;36m:\u001b[0;32m598\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]====|Kicking particles (using 32 cores) done.\n",
"[02:24:46\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]====|Drifting particles (using 32 cores)...\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mndrift=10\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mnkick=10\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246maiDrift=0.525000\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246maKick=0.548750\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mafDrift=0.572500\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246malpha_p=0.179514\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246malpha_lpt_1=0.000000\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246malpha_lpt_2=0.000000\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246malpha_ext=0.000000\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Drift loop, direction 0...\n",
"[02:24:46\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Drift loop, direction 0 done.\n",
"[02:24:46\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Drift loop, direction 1...\n",
"[02:24:46\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Drift loop, direction 1 done.\n",
"[02:24:46\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Drift loop, direction 2...\n",
"[02:24:46\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Drift loop, direction 2 done.\n",
"[02:24:46\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]====|Drifting particles (using 32 cores) done.\n",
"[02:24:46\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]==|ModuleP3M: End P3M step 11/20, time_kick:0.548750, time_drift=0.572500.\n",
"[02:24:46\u001b[00m|\u001b[38;5;159mTIMER \u001b[00m]==|Step 11/20: Density: 13.293 CPU - 0.453 wallclock seconds used.\n",
"[02:24:46\u001b[00m|\u001b[38;5;159mTIMER \u001b[00m]==|Step 11/20: Potential: 0.781 CPU - 0.033 wallclock seconds used.\n",
"[02:24:46\u001b[00m|\u001b[38;5;159mTIMER \u001b[00m]==|Step 11/20: Accelerations (long-range): 1.078 CPU - 0.038 wallclock seconds used.\n",
"[02:24:46\u001b[00m|\u001b[38;5;159mTIMER \u001b[00m]==|Step 11/20: Accelerations (short-range): 3.069 CPU - 0.178 wallclock seconds used.\n",
"[02:24:46\u001b[00m|\u001b[38;5;159mTIMER \u001b[00m]==|Step 11/20: Kick: 1.182 CPU - 0.039 wallclock seconds used.\n",
"[02:24:46\u001b[00m|\u001b[38;5;159mTIMER \u001b[00m]==|Step 11/20: Drift: 2.281 CPU - 0.074 wallclock seconds used.\n",
"[02:24:46\u001b[00m|\u001b[38;5;159mTIMER \u001b[00m]==|Step 11/20: Inputs: 0.000 CPU - 0.000 wallclock seconds used.\n",
"[02:24:46\u001b[00m|\u001b[38;5;159mTIMER \u001b[00m]==|Step 11/20: Diagnostic: 0.000 CPU - 0.000 wallclock seconds used.\n",
"[02:24:46\u001b[00m|\u001b[38;5;159mTIMER \u001b[00m]==|Step 11/20: Outputs: 0.000 CPU - 0.000 wallclock seconds used.\n",
"[02:24:46\u001b[00m|\u001b[38;5;159mTIMER \u001b[00m]==|Step 11/20: Total Evolution: 21.684 CPU - 0.815 wallclock seconds used.\n",
"[02:24:46\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]==|ModuleP3M: Begin P3M step 12/20, time_kick:0.548750, time_drift=0.572500.\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]====|\u001b[38;5;246mGiven the available memory, 4095 threads could be allocated and 32 threads will be used in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel\u001b[0;36m:\u001b[0;32m347\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]====|\u001b[38;5;246mGiven the available memory, 4095 threads could be allocated and 32 threads will be used in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m73\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]====|Getting density contrast (using 32 cores and 32 arrays, parallel routine 1)...\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]======|\u001b[38;5;246mPerforming CiC binning...\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 0...\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1488e0000b60 for threadedDensity[6] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148968000b60 for threadedDensity[10] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 6...\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 10...\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1488f0000b60 for threadedDensity[24] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148958000b60 for threadedDensity[22] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 24...\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 22...\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148998000b60 for threadedDensity[25] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1488dc000b60 for threadedDensity[17] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148900000b60 for threadedDensity[16] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 17...\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 16...\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 25...\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148938000b60 for threadedDensity[18] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148948000b60 for threadedDensity[31] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1489b0000b60 for threadedDensity[1] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 31...\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 1...\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1488e8000b60 for threadedDensity[2] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 18...\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 2...\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148910000b60 for threadedDensity[23] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1489a8000b60 for threadedDensity[30] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 23...\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 30...\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148918000b60 for threadedDensity[15] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148930000b60 for threadedDensity[14] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 15...\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 14...\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148978000b60 for threadedDensity[26] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148908000b60 for threadedDensity[8] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 26...\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 8...\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148970000b60 for threadedDensity[7] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1489a0000b60 for threadedDensity[3] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 7...\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 3...\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148960000b60 for threadedDensity[13] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148940000b60 for threadedDensity[27] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 13...\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 27...\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1488f8000b60 for threadedDensity[19] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1488d0000b60 for threadedDensity[5] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 19...\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148980000b60 for threadedDensity[11] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1489b8000b60 for threadedDensity[4] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 11...\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 4...\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148920000b60 for threadedDensity[12] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148988000b60 for threadedDensity[28] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 12...\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 28...\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1488d8000b60 for threadedDensity[29] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 5...\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 29...\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148990000b60 for threadedDensity[21] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148950000b60 for threadedDensity[9] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 21...\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 9...\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148928000b60 for threadedDensity[20] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 20...\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 0 done.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 5 done.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 17 done.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 2 done.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 25 done.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 31 done.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 1 done.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 24 done.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 22 done.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 6 done.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 10 done.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 18 done.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 23 done.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 30 done.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 14 done.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 15 done.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 7 done.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 3 done.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 8 done.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 26 done.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 11 done.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 4 done.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 27 done.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 13 done.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 19 done.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 29 done.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 20 done.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 28 done.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 9 done.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 21 done.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 16 done.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 12 done.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]======|\u001b[38;5;246mPerforming CiC done.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]======|\u001b[38;5;246mPerforming CiC reduction...\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x1489b0000b60 for threadedDensity[1] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x1488e8000b60 for threadedDensity[2] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x1489a0000b60 for threadedDensity[3] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x1489b8000b60 for threadedDensity[4] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x1488d0000b60 for threadedDensity[5] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x1488e0000b60 for threadedDensity[6] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148970000b60 for threadedDensity[7] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148908000b60 for threadedDensity[8] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148950000b60 for threadedDensity[9] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148968000b60 for threadedDensity[10] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148980000b60 for threadedDensity[11] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148920000b60 for threadedDensity[12] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148960000b60 for threadedDensity[13] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148930000b60 for threadedDensity[14] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148918000b60 for threadedDensity[15] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148900000b60 for threadedDensity[16] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x1488dc000b60 for threadedDensity[17] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:46\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148938000b60 for threadedDensity[18] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x1488f8000b60 for threadedDensity[19] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148928000b60 for threadedDensity[20] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148990000b60 for threadedDensity[21] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148958000b60 for threadedDensity[22] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148910000b60 for threadedDensity[23] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x1488f0000b60 for threadedDensity[24] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148998000b60 for threadedDensity[25] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148978000b60 for threadedDensity[26] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148940000b60 for threadedDensity[27] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148988000b60 for threadedDensity[28] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x1488d8000b60 for threadedDensity[29] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x1489a8000b60 for threadedDensity[30] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148948000b60 for threadedDensity[31] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]======|\u001b[38;5;246mPerforming CiC reduction done.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]====|Getting density contrast (using 32 cores and 32 arrays, parallel routine 1) done.\n",
"[02:24:47\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]====|Getting gravitational potential, periodic boundary conditions (using 32 cores)...\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated memory (1081344 bytes) at 0x55cb08c1b190 for AUX in \u001b[38;5;227mpoisson_solvers.c\u001b[0;36m:\u001b[38;5;192msolve_poisson_DFT\u001b[0;36m:\u001b[0;32m106\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08c1b190 for AUX in \u001b[38;5;227mpoisson_solvers.c\u001b[0;36m:\u001b[38;5;192msolve_poisson_DFT\u001b[0;36m:\u001b[0;32m116\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]====|Getting gravitational potential, periodic boundary conditions (using 32 cores) done.\n",
"[02:24:47\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]====|Kicking particles (using 32 cores)...\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mnkick=11\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mndrift=11\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246maiKick=0.548750\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246maDrift=0.572500\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mafKick=0.596250\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mbeta_delta=-0.044157\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mbeta_lpt_1=0.000000\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mbeta_lpt_2=0.000000\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mbeta_ext=0.000000\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated memory (1048576 bytes) at 0x55cb08c1b190 for g_pad in \u001b[38;5;227mpmcola.c\u001b[0;36m:\u001b[38;5;192mkick_pm_cola\u001b[0;36m:\u001b[0;32m478\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated memory (393216 bytes) at 0x55cb08d1b1a0 for pp in \u001b[38;5;227mpmcola.c\u001b[0;36m:\u001b[38;5;192mkick_pm_cola\u001b[0;36m:\u001b[0;32m554\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Computing short-range forces (using 8 tiles and 32 / 32 cores)...\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (8192 bytes) at 0x55cb087c1430 for tiles in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m57\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb08635220 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb08d7b1b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb08d9b1c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb08dbb1d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb08ddb1e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb08dfb1f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb08e1b200 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb08e3b210 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb08e5b220 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb08e7b230 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb08e9b240 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb08ebb250 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb08edb260 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb08efb270 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb08f1b280 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb08f3b290 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb08f5b2a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb08f7b2b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb08f9b2c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb08fbb2d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb08fdb2e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb08ffb2f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0901b300 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0903b310 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0905b320 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0907b330 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0909b340 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb090bb350 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb090db360 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb090fb370 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0911b380 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0913b390 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0915b3a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0917b3b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0919b3c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb091bb3d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb091db3e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb091fb3f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0921b400 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0923b410 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0925b420 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0927b430 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0929b440 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb092bb450 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb092db460 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb092fb470 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0931b480 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0933b490 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0935b4a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0937b4b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0939b4c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb093bb4d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb093db4e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb093fb4f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0941b500 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0943b510 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0945b520 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0947b530 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0949b540 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb094bb550 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb094db560 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb094fb570 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0951b580 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0953b590 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0955b5a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0957b5b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0959b5c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb095bb5d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb095db5e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb095fb5f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0961b600 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0963b610 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0965b620 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0967b630 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0969b640 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb096bb650 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb096db660 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb096fb670 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0971b680 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0973b690 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0975b6a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0977b6b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0979b6c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb097bb6d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb097db6e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb097fb6f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0981b700 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0983b710 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0985b720 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0987b730 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0989b740 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb098bb750 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb098db760 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb098fb770 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0991b780 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0993b790 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0995b7a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0997b7b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0999b7c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb099bb7d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb099db7e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb099fb7f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09a1b800 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09a3b810 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09a5b820 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09a7b830 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09a9b840 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09abb850 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09adb860 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09afb870 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09b1b880 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09b3b890 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09b5b8a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09b7b8b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09b9b8c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09bbb8d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09bdb8e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09bfb8f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09c1b900 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09c3b910 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09c5b920 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09c7b930 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09c9b940 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09cbb950 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09cdb960 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09cfb970 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09d1b980 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09d3b990 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09d5b9a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09d7b9b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09d9b9c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09dbb9d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09ddb9e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09dfb9f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09e1ba00 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09e3ba10 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09e5ba20 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09e7ba30 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09e9ba40 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09ebba50 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09edba60 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09efba70 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09f1ba80 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09f3ba90 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09f5baa0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09f7bab0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09f9bac0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09fbbad0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09fdbae0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09ffbaf0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a01bb00 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a03bb10 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a05bb20 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a07bb30 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a09bb40 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a0bbb50 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a0dbb60 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a0fbb70 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a11bb80 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a13bb90 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a15bba0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a17bbb0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a19bbc0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a1bbbd0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a1dbbe0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a1fbbf0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a21bc00 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a23bc10 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a25bc20 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a27bc30 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a29bc40 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a2bbc50 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a2dbc60 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a2fbc70 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a31bc80 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a33bc90 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a35bca0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a37bcb0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a39bcc0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a3bbcd0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a3dbce0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a3fbcf0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a41bd00 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a43bd10 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a45bd20 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a47bd30 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a49bd40 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a4bbd50 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a4dbd60 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a4fbd70 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a51bd80 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a53bd90 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a55bda0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a57bdb0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a59bdc0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a5bbdd0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a5dbde0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a5fbdf0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a61be00 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a63be10 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a65be20 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a67be30 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a69be40 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a6bbe50 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a6dbe60 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a6fbe70 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a71be80 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a73be90 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a75bea0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a77beb0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a79bec0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a7bbed0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a7dbee0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a7fbef0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a81bf00 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a83bf10 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a85bf20 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a87bf30 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a89bf40 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a8bbf50 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a8dbf60 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a8fbf70 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a91bf80 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a93bf90 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a95bfa0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a97bfb0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a99bfc0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a9bbfd0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a9dbfe0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a9fbff0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0aa1c000 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0aa3c010 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0aa5c020 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0aa7c030 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0aa9c040 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0aabc050 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0aadc060 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0aafc070 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ab1c080 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ab3c090 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ab5c0a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ab7c0b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ab9c0c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0abbc0d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0abdc0e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0abfc0f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ac1c100 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ac3c110 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ac5c120 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ac7c130 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ac9c140 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0acbc150 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0acdc160 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0acfc170 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ad1c180 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ad3c190 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ad5c1a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ad7c1b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ad9c1c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0adbc1d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0addc1e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0adfc1f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ae1c200 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ae3c210 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ae5c220 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ae7c230 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ae9c240 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0aebc250 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0aedc260 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0aefc270 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0af1c280 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0af3c290 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0af5c2a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0af7c2b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0af9c2c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0afbc2d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0afdc2e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0affc2f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b01c300 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b03c310 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b05c320 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b07c330 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b09c340 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b0bc350 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b0dc360 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b0fc370 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b11c380 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b13c390 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b15c3a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b17c3b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b19c3c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b1bc3d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b1dc3e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b1fc3f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b21c400 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b23c410 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b25c420 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b27c430 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b29c440 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b2bc450 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b2dc460 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b2fc470 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b31c480 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b33c490 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b35c4a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b37c4b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b39c4c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b3bc4d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b3dc4e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b3fc4f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b41c500 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b43c510 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b45c520 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b47c530 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b49c540 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b4bc550 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b4dc560 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b4fc570 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b51c580 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b53c590 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b55c5a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b57c5b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b59c5c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b5bc5d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b5dc5e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b5fc5f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b61c600 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b63c610 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b65c620 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b67c630 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b69c640 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b6bc650 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b6dc660 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b6fc670 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b71c680 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b73c690 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b75c6a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b77c6b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b79c6c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b7bc6d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b7dc6e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b7fc6f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b81c700 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b83c710 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b85c720 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b87c730 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b89c740 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b8bc750 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b8dc760 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b8fc770 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b91c780 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b93c790 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b95c7a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b97c7b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b99c7c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b9bc7d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b9dc7e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b9fc7f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ba1c800 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ba3c810 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ba5c820 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ba7c830 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ba9c840 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0babc850 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0badc860 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bafc870 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bb1c880 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bb3c890 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bb5c8a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bb7c8b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bb9c8c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bbbc8d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bbdc8e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bbfc8f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bc1c900 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bc3c910 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bc5c920 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bc7c930 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bc9c940 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bcbc950 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bcdc960 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bcfc970 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bd1c980 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bd3c990 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bd5c9a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bd7c9b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bd9c9c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bdbc9d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bddc9e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bdfc9f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0be1ca00 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0be3ca10 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0be5ca20 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0be7ca30 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0be9ca40 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bebca50 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bedca60 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0befca70 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bf1ca80 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bf3ca90 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bf5caa0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bf7cab0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bf9cac0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bfbcad0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bfdcae0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bffcaf0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c01cb00 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c03cb10 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c05cb20 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c07cb30 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c09cb40 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c0bcb50 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c0dcb60 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c0fcb70 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c11cb80 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c13cb90 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c15cba0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c17cbb0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c19cbc0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c1bcbd0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c1dcbe0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c1fcbf0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c21cc00 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c23cc10 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c25cc20 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c27cc30 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c29cc40 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c2bcc50 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c2dcc60 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c2fcc70 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c31cc80 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c33cc90 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c35cca0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c37ccb0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c39ccc0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c3bccd0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c3dcce0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c3fccf0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c41cd00 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c43cd10 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c45cd20 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c47cd30 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c49cd40 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c4bcd50 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c4dcd60 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c4fcd70 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c51cd80 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c53cd90 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c55cda0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c57cdb0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c59cdc0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c5bcdd0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c5dcde0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c5fcdf0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c61ce00 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c63ce10 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c65ce20 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c67ce30 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c69ce40 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c6bce50 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c6dce60 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c6fce70 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c71ce80 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c73ce90 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c75cea0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c77ceb0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c79cec0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c7bced0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c7dcee0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c7fcef0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c81cf00 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c83cf10 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c85cf20 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c87cf30 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c89cf40 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c8bcf50 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c8dcf60 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c8fcf70 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c91cf80 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c93cf90 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c95cfa0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c97cfb0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c99cfc0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c9bcfd0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c9dcfe0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c9fcff0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ca1d000 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ca3d010 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ca5d020 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ca7d030 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ca9d040 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0cabd050 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0cadd060 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0cafd070 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0cb1d080 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0cb3d090 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0cb5d0a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0cb7d0b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0cb9d0c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0cbbd0d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0cbdd0e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0cbfd0f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0cc1d100 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0cc3d110 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0cc5d120 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0cc7d130 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0cc9d140 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ccbd150 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ccdd160 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ccfd170 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0cd1d180 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0cd3d190 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08635220 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08d7b1b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08d9b1c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08dbb1d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08ddb1e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08dfb1f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08e1b200 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08e3b210 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08e5b220 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08e7b230 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08e9b240 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08ebb250 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08edb260 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08efb270 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08f1b280 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08f3b290 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08f5b2a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08f7b2b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08f9b2c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08fbb2d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08fdb2e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08ffb2f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0901b300 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0903b310 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0905b320 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0907b330 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0909b340 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb090bb350 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb090db360 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb090fb370 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0911b380 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0913b390 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0915b3a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0917b3b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0919b3c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb091bb3d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb091db3e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb091fb3f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0921b400 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0923b410 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0925b420 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0927b430 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0929b440 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb092bb450 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb092db460 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb092fb470 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0931b480 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0933b490 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0935b4a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0937b4b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0939b4c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb093bb4d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb093db4e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb093fb4f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0941b500 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0943b510 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0945b520 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0947b530 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0949b540 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb094bb550 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb094db560 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb094fb570 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0951b580 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0953b590 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0955b5a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0957b5b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0959b5c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb095bb5d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb095db5e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb095fb5f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0961b600 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0963b610 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0965b620 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0967b630 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0969b640 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb096bb650 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb096db660 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb096fb670 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0971b680 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0973b690 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0975b6a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0977b6b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0979b6c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb097bb6d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb097db6e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb097fb6f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0981b700 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0983b710 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0985b720 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0987b730 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0989b740 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb098bb750 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb098db760 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb098fb770 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0991b780 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0993b790 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0995b7a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0997b7b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0999b7c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb099bb7d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb099db7e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb099fb7f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09a1b800 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09a3b810 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09a5b820 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09a7b830 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09a9b840 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09abb850 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09adb860 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09afb870 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09b1b880 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09b3b890 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09b5b8a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09b7b8b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09b9b8c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09bbb8d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09bdb8e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09bfb8f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09c1b900 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09c3b910 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09c5b920 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09c7b930 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09c9b940 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09cbb950 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09cdb960 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09cfb970 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09d1b980 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09d3b990 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09d5b9a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09d7b9b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09d9b9c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09dbb9d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09ddb9e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09dfb9f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09e1ba00 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09e3ba10 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09e5ba20 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09e7ba30 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09e9ba40 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09ebba50 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09edba60 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09efba70 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09f1ba80 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09f3ba90 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09f5baa0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09f7bab0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09f9bac0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09fbbad0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09fdbae0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09ffbaf0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a01bb00 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a03bb10 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a05bb20 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a07bb30 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a09bb40 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a0bbb50 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a0dbb60 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a0fbb70 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a11bb80 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a13bb90 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a15bba0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a17bbb0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a19bbc0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a1bbbd0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a1dbbe0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a1fbbf0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a21bc00 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a23bc10 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a25bc20 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a27bc30 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a29bc40 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a2bbc50 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a2dbc60 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a2fbc70 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a31bc80 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a33bc90 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a35bca0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a37bcb0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a39bcc0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a3bbcd0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a3dbce0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a3fbcf0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a41bd00 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a43bd10 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a45bd20 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a47bd30 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a49bd40 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a4bbd50 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a4dbd60 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a4fbd70 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a51bd80 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a53bd90 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a55bda0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a57bdb0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a59bdc0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a5bbdd0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a5dbde0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a5fbdf0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a61be00 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a63be10 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a65be20 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a67be30 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a69be40 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a6bbe50 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a6dbe60 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a6fbe70 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a71be80 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a73be90 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a75bea0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a77beb0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a79bec0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a7bbed0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a7dbee0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a7fbef0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a81bf00 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a83bf10 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a85bf20 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a87bf30 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a89bf40 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a8bbf50 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a8dbf60 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a8fbf70 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a91bf80 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a93bf90 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a95bfa0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a97bfb0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a99bfc0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a9bbfd0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a9dbfe0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a9fbff0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0aa1c000 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0aa3c010 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0aa5c020 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0aa7c030 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0aa9c040 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0aabc050 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0aadc060 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0aafc070 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ab1c080 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ab3c090 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ab5c0a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ab7c0b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ab9c0c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0abbc0d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0abdc0e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0abfc0f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ac1c100 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ac3c110 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ac5c120 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ac7c130 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ac9c140 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0acbc150 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0acdc160 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0acfc170 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ad1c180 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ad3c190 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ad5c1a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ad7c1b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ad9c1c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0adbc1d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0addc1e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0adfc1f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ae1c200 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ae3c210 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ae5c220 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ae7c230 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ae9c240 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0aebc250 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0aedc260 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0aefc270 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0af1c280 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0af3c290 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0af5c2a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0af7c2b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0af9c2c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0afbc2d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0afdc2e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0affc2f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b01c300 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b03c310 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b05c320 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b07c330 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b09c340 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b0bc350 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b0dc360 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b0fc370 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b11c380 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b13c390 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b15c3a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b17c3b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b19c3c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b1bc3d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b1dc3e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b1fc3f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b21c400 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b23c410 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b25c420 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b27c430 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b29c440 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b2bc450 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b2dc460 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b2fc470 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b31c480 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b33c490 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b35c4a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b37c4b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b39c4c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b3bc4d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b3dc4e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b3fc4f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b41c500 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b43c510 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b45c520 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b47c530 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b49c540 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b4bc550 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b4dc560 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b4fc570 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b51c580 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b53c590 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b55c5a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b57c5b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b59c5c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b5bc5d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b5dc5e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b5fc5f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b61c600 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b63c610 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b65c620 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b67c630 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b69c640 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b6bc650 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b6dc660 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b6fc670 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b71c680 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b73c690 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b75c6a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b77c6b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b79c6c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b7bc6d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b7dc6e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b7fc6f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b81c700 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b83c710 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b85c720 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b87c730 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b89c740 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b8bc750 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b8dc760 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b8fc770 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b91c780 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b93c790 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b95c7a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b97c7b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b99c7c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b9bc7d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b9dc7e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b9fc7f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ba1c800 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ba3c810 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ba5c820 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ba7c830 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ba9c840 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0babc850 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0badc860 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bafc870 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bb1c880 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bb3c890 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bb5c8a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bb7c8b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bb9c8c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bbbc8d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bbdc8e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bbfc8f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bc1c900 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bc3c910 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bc5c920 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bc7c930 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bc9c940 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bcbc950 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bcdc960 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bcfc970 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bd1c980 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bd3c990 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bd5c9a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bd7c9b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bd9c9c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bdbc9d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bddc9e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bdfc9f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0be1ca00 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0be3ca10 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0be5ca20 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0be7ca30 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0be9ca40 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bebca50 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bedca60 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0befca70 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bf1ca80 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bf3ca90 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bf5caa0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bf7cab0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bf9cac0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bfbcad0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bfdcae0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bffcaf0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c01cb00 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c03cb10 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c05cb20 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c07cb30 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c09cb40 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c0bcb50 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c0dcb60 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c0fcb70 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c11cb80 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c13cb90 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c15cba0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c17cbb0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c19cbc0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c1bcbd0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c1dcbe0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c1fcbf0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c21cc00 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c23cc10 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c25cc20 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c27cc30 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c29cc40 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c2bcc50 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c2dcc60 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c2fcc70 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c31cc80 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c33cc90 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c35cca0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c37ccb0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c39ccc0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c3bccd0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c3dcce0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c3fccf0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c41cd00 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c43cd10 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c45cd20 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c47cd30 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c49cd40 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c4bcd50 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c4dcd60 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c4fcd70 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c51cd80 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c53cd90 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c55cda0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c57cdb0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c59cdc0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c5bcdd0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c5dcde0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c5fcdf0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c61ce00 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c63ce10 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c65ce20 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c67ce30 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c69ce40 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c6bce50 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c6dce60 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c6fce70 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c71ce80 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c73ce90 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c75cea0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c77ceb0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c79cec0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c7bced0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c7dcee0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c7fcef0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c81cf00 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c83cf10 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c85cf20 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c87cf30 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c89cf40 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c8bcf50 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c8dcf60 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c8fcf70 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c91cf80 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c93cf90 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c95cfa0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c97cfb0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c99cfc0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c9bcfd0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c9dcfe0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c9fcff0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ca1d000 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ca3d010 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ca5d020 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ca7d030 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ca9d040 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0cabd050 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0cadd060 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0cafd070 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0cb1d080 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0cb3d090 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0cb5d0a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0cb7d0b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0cb9d0c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0cbbd0d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0cbdd0e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0cbfd0f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0cc1d100 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0cc3d110 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0cc5d120 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0cc7d130 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0cc9d140 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ccbd150 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ccdd160 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ccfd170 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0cd1d180 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0cd3d190 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb087c1430 for tiles in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m211\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Computing short-range forces (using 8 tiles and 32 / 32 cores) done.\n",
"[02:24:47\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Acceleration loop, direction 0...\n",
"[02:24:47\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Acceleration loop, direction 0 done.\n",
"[02:24:47\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Kick loop, direction 0...\n",
"[02:24:47\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Kick loop, direction 0 done.\n",
"[02:24:47\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Acceleration loop, direction 1...\n",
"[02:24:47\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Acceleration loop, direction 1 done.\n",
"[02:24:47\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Kick loop, direction 1...\n",
"[02:24:47\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Kick loop, direction 1 done.\n",
"[02:24:47\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Acceleration loop, direction 2...\n",
"[02:24:47\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Acceleration loop, direction 2 done.\n",
"[02:24:47\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Kick loop, direction 2...\n",
"[02:24:47\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Kick loop, direction 2 done.\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08c1b190 for g_pad in \u001b[38;5;227mpmcola.c\u001b[0;36m:\u001b[38;5;192mkick_pm_cola\u001b[0;36m:\u001b[0;32m592\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08d1b1a0 for pp in \u001b[38;5;227mpmcola.c\u001b[0;36m:\u001b[38;5;192mkick_pm_cola\u001b[0;36m:\u001b[0;32m598\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]====|Kicking particles (using 32 cores) done.\n",
"[02:24:47\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]====|Drifting particles (using 32 cores)...\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mndrift=11\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mnkick=11\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246maiDrift=0.572500\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246maKick=0.596250\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mafDrift=0.620000\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246malpha_p=0.152790\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246malpha_lpt_1=0.000000\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246malpha_lpt_2=0.000000\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246malpha_ext=0.000000\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Drift loop, direction 0...\n",
"[02:24:47\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Drift loop, direction 0 done.\n",
"[02:24:47\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Drift loop, direction 1...\n",
"[02:24:47\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Drift loop, direction 1 done.\n",
"[02:24:47\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Drift loop, direction 2...\n",
"[02:24:47\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Drift loop, direction 2 done.\n",
"[02:24:47\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]====|Drifting particles (using 32 cores) done.\n",
"[02:24:47\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]==|ModuleP3M: End P3M step 12/20, time_kick:0.596250, time_drift=0.620000.\n",
"[02:24:47\u001b[00m|\u001b[38;5;159mTIMER \u001b[00m]==|Step 12/20: Density: 13.169 CPU - 0.446 wallclock seconds used.\n",
"[02:24:47\u001b[00m|\u001b[38;5;159mTIMER \u001b[00m]==|Step 12/20: Potential: 0.787 CPU - 0.036 wallclock seconds used.\n",
"[02:24:47\u001b[00m|\u001b[38;5;159mTIMER \u001b[00m]==|Step 12/20: Accelerations (long-range): 1.060 CPU - 0.037 wallclock seconds used.\n",
"[02:24:47\u001b[00m|\u001b[38;5;159mTIMER \u001b[00m]==|Step 12/20: Accelerations (short-range): 3.101 CPU - 0.203 wallclock seconds used.\n",
"[02:24:47\u001b[00m|\u001b[38;5;159mTIMER \u001b[00m]==|Step 12/20: Kick: 1.164 CPU - 0.039 wallclock seconds used.\n",
"[02:24:47\u001b[00m|\u001b[38;5;159mTIMER \u001b[00m]==|Step 12/20: Drift: 2.248 CPU - 0.074 wallclock seconds used.\n",
"[02:24:47\u001b[00m|\u001b[38;5;159mTIMER \u001b[00m]==|Step 12/20: Inputs: 0.000 CPU - 0.000 wallclock seconds used.\n",
"[02:24:47\u001b[00m|\u001b[38;5;159mTIMER \u001b[00m]==|Step 12/20: Diagnostic: 0.000 CPU - 0.000 wallclock seconds used.\n",
"[02:24:47\u001b[00m|\u001b[38;5;159mTIMER \u001b[00m]==|Step 12/20: Outputs: 0.000 CPU - 0.000 wallclock seconds used.\n",
"[02:24:47\u001b[00m|\u001b[38;5;159mTIMER \u001b[00m]==|Step 12/20: Total Evolution: 21.529 CPU - 0.836 wallclock seconds used.\n",
"[02:24:47\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]==|ModuleP3M: Begin P3M step 13/20, time_kick:0.596250, time_drift=0.620000.\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]====|\u001b[38;5;246mGiven the available memory, 4095 threads could be allocated and 32 threads will be used in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel\u001b[0;36m:\u001b[0;32m347\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]====|\u001b[38;5;246mGiven the available memory, 4095 threads could be allocated and 32 threads will be used in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m73\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]====|Getting density contrast (using 32 cores and 32 arrays, parallel routine 1)...\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]======|\u001b[38;5;246mPerforming CiC binning...\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 0...\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1488d0000b60 for threadedDensity[5] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1488f8000b60 for threadedDensity[19] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 5...\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 19...\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148950000b60 for threadedDensity[9] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 9...\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148938000b60 for threadedDensity[18] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148968000b60 for threadedDensity[10] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148948000b60 for threadedDensity[31] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 10...\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 31...\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148970000b60 for threadedDensity[7] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148900000b60 for threadedDensity[16] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 7...\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 16...\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1488e8000b60 for threadedDensity[2] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148998000b60 for threadedDensity[25] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 2...\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 25...\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1488f0000b60 for threadedDensity[24] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148958000b60 for threadedDensity[22] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 24...\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 22...\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1489a8000b60 for threadedDensity[30] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 18...\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 30...\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148978000b60 for threadedDensity[26] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148910000b60 for threadedDensity[23] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 26...\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 23...\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148930000b60 for threadedDensity[14] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148918000b60 for threadedDensity[15] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 14...\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 15...\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148908000b60 for threadedDensity[8] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1488e0000b60 for threadedDensity[6] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148920000b60 for threadedDensity[12] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 6...\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 12...\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 8...\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148980000b60 for threadedDensity[11] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1488dc000b60 for threadedDensity[17] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 11...\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 17...\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148988000b60 for threadedDensity[28] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1489a0000b60 for threadedDensity[3] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 28...\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 3...\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148940000b60 for threadedDensity[27] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148960000b60 for threadedDensity[13] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 27...\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 13...\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148990000b60 for threadedDensity[21] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 21...\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1489b8000b60 for threadedDensity[4] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 4...\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1489b0000b60 for threadedDensity[1] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 1...\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148928000b60 for threadedDensity[20] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 20...\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1488d8000b60 for threadedDensity[29] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 29...\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 8 done.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 16 done.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 7 done.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 2 done.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 25 done.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 0 done.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 22 done.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 24 done.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 31 done.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 10 done.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 18 done.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 26 done.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 23 done.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 15 done.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 14 done.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 29 done.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 12 done.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 6 done.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 11 done.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 17 done.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 13 done.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 27 done.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 1 done.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 4 done.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 28 done.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 3 done.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 5 done.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 19 done.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 20 done.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 21 done.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 30 done.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 9 done.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]======|\u001b[38;5;246mPerforming CiC done.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]======|\u001b[38;5;246mPerforming CiC reduction...\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x1489b0000b60 for threadedDensity[1] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x1488e8000b60 for threadedDensity[2] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x1489a0000b60 for threadedDensity[3] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x1489b8000b60 for threadedDensity[4] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x1488d0000b60 for threadedDensity[5] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x1488e0000b60 for threadedDensity[6] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148970000b60 for threadedDensity[7] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148908000b60 for threadedDensity[8] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148950000b60 for threadedDensity[9] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148968000b60 for threadedDensity[10] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148980000b60 for threadedDensity[11] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148920000b60 for threadedDensity[12] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148960000b60 for threadedDensity[13] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148930000b60 for threadedDensity[14] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148918000b60 for threadedDensity[15] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148900000b60 for threadedDensity[16] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x1488dc000b60 for threadedDensity[17] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148938000b60 for threadedDensity[18] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x1488f8000b60 for threadedDensity[19] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148928000b60 for threadedDensity[20] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148990000b60 for threadedDensity[21] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148958000b60 for threadedDensity[22] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148910000b60 for threadedDensity[23] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x1488f0000b60 for threadedDensity[24] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148998000b60 for threadedDensity[25] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148978000b60 for threadedDensity[26] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148940000b60 for threadedDensity[27] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148988000b60 for threadedDensity[28] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x1488d8000b60 for threadedDensity[29] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x1489a8000b60 for threadedDensity[30] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148948000b60 for threadedDensity[31] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]======|\u001b[38;5;246mPerforming CiC reduction done.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]====|Getting density contrast (using 32 cores and 32 arrays, parallel routine 1) done.\n",
"[02:24:47\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]====|Getting gravitational potential, periodic boundary conditions (using 32 cores)...\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated memory (1081344 bytes) at 0x55cb08c1b190 for AUX in \u001b[38;5;227mpoisson_solvers.c\u001b[0;36m:\u001b[38;5;192msolve_poisson_DFT\u001b[0;36m:\u001b[0;32m106\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08c1b190 for AUX in \u001b[38;5;227mpoisson_solvers.c\u001b[0;36m:\u001b[38;5;192msolve_poisson_DFT\u001b[0;36m:\u001b[0;32m116\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]====|Getting gravitational potential, periodic boundary conditions (using 32 cores) done.\n",
"[02:24:47\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]====|Kicking particles (using 32 cores)...\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mnkick=12\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mndrift=12\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246maiKick=0.596250\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246maDrift=0.620000\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mafKick=0.643750\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mbeta_delta=-0.040843\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mbeta_lpt_1=0.000000\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mbeta_lpt_2=0.000000\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mbeta_ext=0.000000\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated memory (1048576 bytes) at 0x55cb08c1b190 for g_pad in \u001b[38;5;227mpmcola.c\u001b[0;36m:\u001b[38;5;192mkick_pm_cola\u001b[0;36m:\u001b[0;32m478\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated memory (393216 bytes) at 0x55cb08d1b1a0 for pp in \u001b[38;5;227mpmcola.c\u001b[0;36m:\u001b[38;5;192mkick_pm_cola\u001b[0;36m:\u001b[0;32m554\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Computing short-range forces (using 8 tiles and 32 / 32 cores)...\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (8192 bytes) at 0x55cb087c1430 for tiles in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m57\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb08635220 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb08d7b1b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb08d9b1c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb08dbb1d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb08ddb1e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb08dfb1f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb08e1b200 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb08e3b210 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb08e5b220 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb08e7b230 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb08e9b240 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb08ebb250 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb08edb260 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb08efb270 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb08f1b280 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb08f3b290 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb08f5b2a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb08f7b2b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb08f9b2c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb08fbb2d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb08fdb2e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb08ffb2f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0901b300 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0903b310 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0905b320 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0907b330 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0909b340 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb090bb350 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb090db360 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb090fb370 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0911b380 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0913b390 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0915b3a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0917b3b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0919b3c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb091bb3d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb091db3e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb091fb3f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0921b400 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0923b410 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0925b420 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0927b430 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0929b440 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb092bb450 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb092db460 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb092fb470 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0931b480 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0933b490 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0935b4a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0937b4b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0939b4c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb093bb4d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb093db4e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb093fb4f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0941b500 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0943b510 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0945b520 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0947b530 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0949b540 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb094bb550 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb094db560 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb094fb570 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0951b580 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0953b590 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0955b5a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0957b5b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0959b5c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb095bb5d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb095db5e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb095fb5f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0961b600 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0963b610 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0965b620 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0967b630 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0969b640 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb096bb650 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb096db660 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb096fb670 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0971b680 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0973b690 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0975b6a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0977b6b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0979b6c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb097bb6d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb097db6e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb097fb6f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0981b700 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0983b710 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0985b720 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0987b730 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0989b740 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb098bb750 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb098db760 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb098fb770 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0991b780 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0993b790 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0995b7a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0997b7b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0999b7c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb099bb7d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb099db7e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb099fb7f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09a1b800 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09a3b810 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09a5b820 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09a7b830 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09a9b840 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09abb850 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09adb860 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09afb870 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09b1b880 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09b3b890 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09b5b8a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09b7b8b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09b9b8c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09bbb8d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09bdb8e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09bfb8f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09c1b900 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09c3b910 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09c5b920 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09c7b930 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09c9b940 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09cbb950 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09cdb960 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09cfb970 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09d1b980 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09d3b990 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09d5b9a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09d7b9b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09d9b9c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09dbb9d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09ddb9e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09dfb9f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09e1ba00 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09e3ba10 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09e5ba20 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09e7ba30 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09e9ba40 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09ebba50 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09edba60 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09efba70 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09f1ba80 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09f3ba90 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09f5baa0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09f7bab0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09f9bac0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09fbbad0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09fdbae0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09ffbaf0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a01bb00 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a03bb10 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a05bb20 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a07bb30 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a09bb40 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a0bbb50 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a0dbb60 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a0fbb70 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a11bb80 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a13bb90 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a15bba0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a17bbb0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a19bbc0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a1bbbd0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a1dbbe0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a1fbbf0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a21bc00 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a23bc10 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a25bc20 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a27bc30 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a29bc40 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a2bbc50 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a2dbc60 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a2fbc70 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a31bc80 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a33bc90 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a35bca0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a37bcb0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a39bcc0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a3bbcd0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a3dbce0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a3fbcf0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a41bd00 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a43bd10 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a45bd20 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a47bd30 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a49bd40 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a4bbd50 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a4dbd60 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a4fbd70 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a51bd80 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a53bd90 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a55bda0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a57bdb0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a59bdc0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a5bbdd0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a5dbde0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a5fbdf0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a61be00 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a63be10 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a65be20 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a67be30 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a69be40 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a6bbe50 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a6dbe60 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a6fbe70 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a71be80 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a73be90 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a75bea0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a77beb0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a79bec0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a7bbed0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a7dbee0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a7fbef0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a81bf00 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a83bf10 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a85bf20 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a87bf30 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a89bf40 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a8bbf50 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a8dbf60 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a8fbf70 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a91bf80 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a93bf90 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a95bfa0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a97bfb0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a99bfc0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a9bbfd0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a9dbfe0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a9fbff0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0aa1c000 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0aa3c010 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0aa5c020 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0aa7c030 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0aa9c040 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0aabc050 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0aadc060 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0aafc070 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ab1c080 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ab3c090 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ab5c0a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ab7c0b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ab9c0c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0abbc0d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0abdc0e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0abfc0f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ac1c100 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ac3c110 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ac5c120 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ac7c130 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ac9c140 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0acbc150 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0acdc160 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0acfc170 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ad1c180 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ad3c190 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ad5c1a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ad7c1b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ad9c1c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0adbc1d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0addc1e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0adfc1f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ae1c200 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ae3c210 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ae5c220 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ae7c230 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ae9c240 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0aebc250 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0aedc260 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0aefc270 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0af1c280 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0af3c290 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0af5c2a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0af7c2b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0af9c2c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0afbc2d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0afdc2e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0affc2f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b01c300 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b03c310 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b05c320 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b07c330 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b09c340 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b0bc350 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b0dc360 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b0fc370 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b11c380 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b13c390 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b15c3a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b17c3b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b19c3c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b1bc3d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b1dc3e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b1fc3f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b21c400 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b23c410 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b25c420 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b27c430 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b29c440 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b2bc450 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b2dc460 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b2fc470 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b31c480 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b33c490 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b35c4a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b37c4b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b39c4c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b3bc4d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b3dc4e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b3fc4f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b41c500 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b43c510 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b45c520 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b47c530 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b49c540 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b4bc550 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b4dc560 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b4fc570 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b51c580 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b53c590 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b55c5a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b57c5b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b59c5c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b5bc5d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b5dc5e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b5fc5f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b61c600 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b63c610 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b65c620 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b67c630 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b69c640 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b6bc650 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b6dc660 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b6fc670 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b71c680 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b73c690 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b75c6a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b77c6b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b79c6c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b7bc6d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b7dc6e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b7fc6f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b81c700 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b83c710 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b85c720 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b87c730 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b89c740 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b8bc750 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b8dc760 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b8fc770 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b91c780 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b93c790 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b95c7a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b97c7b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b99c7c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b9bc7d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b9dc7e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b9fc7f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ba1c800 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ba3c810 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ba5c820 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ba7c830 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ba9c840 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0babc850 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0badc860 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bafc870 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bb1c880 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bb3c890 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bb5c8a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bb7c8b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bb9c8c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bbbc8d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bbdc8e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bbfc8f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bc1c900 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bc3c910 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bc5c920 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bc7c930 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bc9c940 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bcbc950 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bcdc960 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bcfc970 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bd1c980 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bd3c990 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bd5c9a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bd7c9b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bd9c9c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bdbc9d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bddc9e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bdfc9f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0be1ca00 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0be3ca10 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0be5ca20 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0be7ca30 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0be9ca40 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bebca50 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bedca60 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0befca70 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bf1ca80 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bf3ca90 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bf5caa0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bf7cab0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bf9cac0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bfbcad0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bfdcae0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bffcaf0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c01cb00 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c03cb10 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c05cb20 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c07cb30 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c09cb40 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c0bcb50 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c0dcb60 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c0fcb70 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c11cb80 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c13cb90 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c15cba0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c17cbb0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c19cbc0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c1bcbd0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c1dcbe0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c1fcbf0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c21cc00 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c23cc10 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c25cc20 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c27cc30 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c29cc40 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c2bcc50 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c2dcc60 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c2fcc70 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c31cc80 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c33cc90 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c35cca0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c37ccb0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c39ccc0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c3bccd0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c3dcce0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c3fccf0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c41cd00 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c43cd10 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c45cd20 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c47cd30 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c49cd40 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c4bcd50 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c4dcd60 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c4fcd70 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c51cd80 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c53cd90 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c55cda0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c57cdb0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c59cdc0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c5bcdd0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c5dcde0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c5fcdf0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c61ce00 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c63ce10 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c65ce20 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c67ce30 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c69ce40 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c6bce50 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c6dce60 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c6fce70 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c71ce80 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c73ce90 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c75cea0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c77ceb0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c79cec0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c7bced0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c7dcee0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c7fcef0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c81cf00 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c83cf10 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c85cf20 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c87cf30 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c89cf40 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c8bcf50 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c8dcf60 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c8fcf70 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c91cf80 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c93cf90 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c95cfa0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c97cfb0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c99cfc0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c9bcfd0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c9dcfe0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c9fcff0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ca1d000 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ca3d010 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ca5d020 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ca7d030 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ca9d040 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0cabd050 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0cadd060 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0cafd070 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0cb1d080 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0cb3d090 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0cb5d0a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0cb7d0b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0cb9d0c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0cbbd0d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0cbdd0e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0cbfd0f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0cc1d100 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0cc3d110 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0cc5d120 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0cc7d130 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0cc9d140 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ccbd150 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ccdd160 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ccfd170 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0cd1d180 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0cd3d190 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08635220 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08d7b1b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08d9b1c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08dbb1d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08ddb1e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08dfb1f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08e1b200 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08e3b210 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08e5b220 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08e7b230 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08e9b240 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08ebb250 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08edb260 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08efb270 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08f1b280 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08f3b290 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08f5b2a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08f7b2b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08f9b2c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08fbb2d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08fdb2e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08ffb2f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0901b300 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0903b310 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0905b320 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0907b330 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0909b340 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb090bb350 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb090db360 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb090fb370 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0911b380 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0913b390 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0915b3a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0917b3b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0919b3c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb091bb3d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb091db3e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb091fb3f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0921b400 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0923b410 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0925b420 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0927b430 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0929b440 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb092bb450 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb092db460 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb092fb470 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0931b480 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0933b490 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0935b4a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0937b4b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0939b4c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb093bb4d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb093db4e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb093fb4f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0941b500 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0943b510 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0945b520 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0947b530 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0949b540 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb094bb550 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb094db560 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb094fb570 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0951b580 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0953b590 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0955b5a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0957b5b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0959b5c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb095bb5d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb095db5e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb095fb5f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0961b600 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0963b610 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0965b620 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0967b630 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0969b640 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb096bb650 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb096db660 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb096fb670 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0971b680 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0973b690 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0975b6a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0977b6b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0979b6c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb097bb6d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb097db6e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb097fb6f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0981b700 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0983b710 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0985b720 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0987b730 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0989b740 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb098bb750 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb098db760 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb098fb770 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0991b780 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0993b790 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0995b7a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0997b7b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0999b7c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb099bb7d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb099db7e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb099fb7f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09a1b800 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09a3b810 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09a5b820 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09a7b830 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09a9b840 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09abb850 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09adb860 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09afb870 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09b1b880 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09b3b890 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09b5b8a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09b7b8b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09b9b8c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09bbb8d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09bdb8e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09bfb8f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09c1b900 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09c3b910 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09c5b920 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09c7b930 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09c9b940 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09cbb950 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09cdb960 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09cfb970 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09d1b980 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09d3b990 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09d5b9a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09d7b9b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09d9b9c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09dbb9d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09ddb9e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09dfb9f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09e1ba00 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09e3ba10 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09e5ba20 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09e7ba30 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09e9ba40 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09ebba50 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09edba60 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09efba70 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09f1ba80 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09f3ba90 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09f5baa0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09f7bab0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09f9bac0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09fbbad0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09fdbae0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09ffbaf0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a01bb00 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a03bb10 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a05bb20 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a07bb30 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a09bb40 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a0bbb50 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a0dbb60 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a0fbb70 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a11bb80 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a13bb90 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a15bba0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a17bbb0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a19bbc0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a1bbbd0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a1dbbe0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a1fbbf0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a21bc00 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a23bc10 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a25bc20 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a27bc30 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a29bc40 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a2bbc50 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a2dbc60 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a2fbc70 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a31bc80 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a33bc90 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a35bca0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a37bcb0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a39bcc0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a3bbcd0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a3dbce0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a3fbcf0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a41bd00 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a43bd10 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a45bd20 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a47bd30 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a49bd40 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a4bbd50 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a4dbd60 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a4fbd70 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a51bd80 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a53bd90 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a55bda0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a57bdb0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a59bdc0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a5bbdd0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a5dbde0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a5fbdf0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a61be00 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a63be10 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a65be20 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a67be30 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a69be40 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a6bbe50 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a6dbe60 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a6fbe70 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a71be80 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a73be90 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a75bea0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a77beb0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a79bec0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a7bbed0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a7dbee0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a7fbef0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a81bf00 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a83bf10 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a85bf20 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a87bf30 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a89bf40 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a8bbf50 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a8dbf60 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a8fbf70 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a91bf80 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a93bf90 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a95bfa0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a97bfb0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a99bfc0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a9bbfd0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a9dbfe0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a9fbff0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0aa1c000 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0aa3c010 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0aa5c020 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0aa7c030 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0aa9c040 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0aabc050 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0aadc060 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0aafc070 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ab1c080 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ab3c090 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ab5c0a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ab7c0b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ab9c0c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0abbc0d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0abdc0e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0abfc0f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ac1c100 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ac3c110 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ac5c120 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ac7c130 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ac9c140 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0acbc150 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0acdc160 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0acfc170 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ad1c180 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ad3c190 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ad5c1a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ad7c1b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ad9c1c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0adbc1d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0addc1e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0adfc1f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ae1c200 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ae3c210 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ae5c220 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ae7c230 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ae9c240 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0aebc250 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0aedc260 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0aefc270 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0af1c280 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0af3c290 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0af5c2a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0af7c2b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0af9c2c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0afbc2d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0afdc2e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0affc2f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b01c300 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b03c310 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b05c320 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b07c330 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b09c340 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b0bc350 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b0dc360 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b0fc370 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b11c380 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b13c390 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b15c3a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b17c3b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b19c3c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b1bc3d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b1dc3e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b1fc3f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b21c400 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b23c410 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b25c420 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b27c430 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b29c440 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b2bc450 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b2dc460 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b2fc470 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b31c480 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b33c490 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b35c4a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b37c4b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b39c4c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b3bc4d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b3dc4e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b3fc4f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b41c500 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b43c510 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b45c520 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b47c530 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b49c540 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b4bc550 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b4dc560 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b4fc570 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b51c580 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b53c590 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b55c5a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b57c5b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b59c5c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b5bc5d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b5dc5e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b5fc5f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b61c600 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b63c610 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b65c620 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b67c630 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b69c640 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b6bc650 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b6dc660 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b6fc670 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b71c680 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b73c690 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b75c6a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b77c6b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b79c6c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b7bc6d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b7dc6e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b7fc6f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b81c700 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b83c710 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b85c720 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b87c730 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b89c740 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b8bc750 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b8dc760 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b8fc770 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b91c780 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b93c790 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b95c7a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b97c7b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b99c7c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b9bc7d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b9dc7e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b9fc7f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ba1c800 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ba3c810 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ba5c820 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ba7c830 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ba9c840 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0babc850 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0badc860 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bafc870 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bb1c880 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bb3c890 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bb5c8a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bb7c8b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bb9c8c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bbbc8d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bbdc8e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bbfc8f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bc1c900 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bc3c910 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bc5c920 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bc7c930 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bc9c940 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bcbc950 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bcdc960 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bcfc970 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bd1c980 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bd3c990 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bd5c9a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bd7c9b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bd9c9c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bdbc9d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bddc9e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bdfc9f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0be1ca00 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0be3ca10 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0be5ca20 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0be7ca30 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0be9ca40 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bebca50 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bedca60 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0befca70 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bf1ca80 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bf3ca90 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bf5caa0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bf7cab0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bf9cac0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bfbcad0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bfdcae0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bffcaf0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c01cb00 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c03cb10 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c05cb20 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c07cb30 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c09cb40 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c0bcb50 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c0dcb60 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c0fcb70 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c11cb80 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c13cb90 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c15cba0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c17cbb0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c19cbc0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c1bcbd0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c1dcbe0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c1fcbf0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c21cc00 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c23cc10 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c25cc20 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c27cc30 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c29cc40 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c2bcc50 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c2dcc60 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c2fcc70 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c31cc80 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c33cc90 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c35cca0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c37ccb0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c39ccc0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c3bccd0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c3dcce0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c3fccf0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c41cd00 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c43cd10 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c45cd20 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c47cd30 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c49cd40 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c4bcd50 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c4dcd60 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c4fcd70 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c51cd80 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c53cd90 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c55cda0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c57cdb0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c59cdc0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c5bcdd0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c5dcde0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c5fcdf0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c61ce00 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c63ce10 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c65ce20 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c67ce30 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c69ce40 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c6bce50 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c6dce60 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c6fce70 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c71ce80 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c73ce90 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c75cea0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c77ceb0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c79cec0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c7bced0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c7dcee0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c7fcef0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c81cf00 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c83cf10 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c85cf20 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c87cf30 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c89cf40 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c8bcf50 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c8dcf60 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c8fcf70 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c91cf80 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c93cf90 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c95cfa0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c97cfb0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c99cfc0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c9bcfd0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c9dcfe0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c9fcff0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ca1d000 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ca3d010 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ca5d020 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ca7d030 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ca9d040 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0cabd050 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0cadd060 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0cafd070 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0cb1d080 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0cb3d090 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0cb5d0a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0cb7d0b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0cb9d0c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0cbbd0d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0cbdd0e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0cbfd0f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0cc1d100 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0cc3d110 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0cc5d120 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0cc7d130 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0cc9d140 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ccbd150 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ccdd160 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ccfd170 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0cd1d180 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0cd3d190 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb087c1430 for tiles in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m211\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Computing short-range forces (using 8 tiles and 32 / 32 cores) done.\n",
"[02:24:47\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Acceleration loop, direction 0...\n",
"[02:24:47\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Acceleration loop, direction 0 done.\n",
"[02:24:47\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Kick loop, direction 0...\n",
"[02:24:47\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Kick loop, direction 0 done.\n",
"[02:24:47\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Acceleration loop, direction 1...\n",
"[02:24:47\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Acceleration loop, direction 1 done.\n",
"[02:24:47\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Kick loop, direction 1...\n",
"[02:24:47\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Kick loop, direction 1 done.\n",
"[02:24:47\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Acceleration loop, direction 2...\n",
"[02:24:47\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Acceleration loop, direction 2 done.\n",
"[02:24:47\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Kick loop, direction 2...\n",
"[02:24:47\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Kick loop, direction 2 done.\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08c1b190 for g_pad in \u001b[38;5;227mpmcola.c\u001b[0;36m:\u001b[38;5;192mkick_pm_cola\u001b[0;36m:\u001b[0;32m592\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08d1b1a0 for pp in \u001b[38;5;227mpmcola.c\u001b[0;36m:\u001b[38;5;192mkick_pm_cola\u001b[0;36m:\u001b[0;32m598\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]====|Kicking particles (using 32 cores) done.\n",
"[02:24:47\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]====|Drifting particles (using 32 cores)...\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mndrift=12\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mnkick=12\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246maiDrift=0.620000\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246maKick=0.643750\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mafDrift=0.667500\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246malpha_p=0.130883\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246malpha_lpt_1=0.000000\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246malpha_lpt_2=0.000000\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246malpha_ext=0.000000\u001b[00m\n",
"[02:24:47\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Drift loop, direction 0...\n",
"[02:24:47\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Drift loop, direction 0 done.\n",
"[02:24:47\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Drift loop, direction 1...\n",
"[02:24:48\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Drift loop, direction 1 done.\n",
"[02:24:48\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Drift loop, direction 2...\n",
"[02:24:48\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Drift loop, direction 2 done.\n",
"[02:24:48\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]====|Drifting particles (using 32 cores) done.\n",
"[02:24:48\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]==|ModuleP3M: End P3M step 13/20, time_kick:0.643750, time_drift=0.667500.\n",
"[02:24:48\u001b[00m|\u001b[38;5;159mTIMER \u001b[00m]==|Step 13/20: Density: 4.069 CPU - 0.134 wallclock seconds used.\n",
"[02:24:48\u001b[00m|\u001b[38;5;159mTIMER \u001b[00m]==|Step 13/20: Potential: 0.631 CPU - 0.029 wallclock seconds used.\n",
"[02:24:48\u001b[00m|\u001b[38;5;159mTIMER \u001b[00m]==|Step 13/20: Accelerations (long-range): 1.085 CPU - 0.038 wallclock seconds used.\n",
"[02:24:48\u001b[00m|\u001b[38;5;159mTIMER \u001b[00m]==|Step 13/20: Accelerations (short-range): 2.258 CPU - 0.167 wallclock seconds used.\n",
"[02:24:48\u001b[00m|\u001b[38;5;159mTIMER \u001b[00m]==|Step 13/20: Kick: 1.183 CPU - 0.038 wallclock seconds used.\n",
"[02:24:48\u001b[00m|\u001b[38;5;159mTIMER \u001b[00m]==|Step 13/20: Drift: 2.229 CPU - 0.075 wallclock seconds used.\n",
"[02:24:48\u001b[00m|\u001b[38;5;159mTIMER \u001b[00m]==|Step 13/20: Inputs: 0.000 CPU - 0.000 wallclock seconds used.\n",
"[02:24:48\u001b[00m|\u001b[38;5;159mTIMER \u001b[00m]==|Step 13/20: Diagnostic: 0.000 CPU - 0.000 wallclock seconds used.\n",
"[02:24:48\u001b[00m|\u001b[38;5;159mTIMER \u001b[00m]==|Step 13/20: Outputs: 0.000 CPU - 0.000 wallclock seconds used.\n",
"[02:24:48\u001b[00m|\u001b[38;5;159mTIMER \u001b[00m]==|Step 13/20: Total Evolution: 11.454 CPU - 0.481 wallclock seconds used.\n",
"[02:24:48\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]==|ModuleP3M: Begin P3M step 14/20, time_kick:0.643750, time_drift=0.667500.\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]====|\u001b[38;5;246mGiven the available memory, 4095 threads could be allocated and 32 threads will be used in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel\u001b[0;36m:\u001b[0;32m347\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]====|\u001b[38;5;246mGiven the available memory, 4095 threads could be allocated and 32 threads will be used in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m73\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]====|Getting density contrast (using 32 cores and 32 arrays, parallel routine 1)...\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]======|\u001b[38;5;246mPerforming CiC binning...\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 0...\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148980000b60 for threadedDensity[11] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 11...\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148978000b60 for threadedDensity[26] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148920000b60 for threadedDensity[12] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1488e0000b60 for threadedDensity[6] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 12...\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 6...\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148938000b60 for threadedDensity[18] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1489a0000b60 for threadedDensity[3] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148988000b60 for threadedDensity[28] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 3...\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 28...\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148910000b60 for threadedDensity[23] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148950000b60 for threadedDensity[9] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 23...\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 9...\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148900000b60 for threadedDensity[16] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148970000b60 for threadedDensity[7] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 16...\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 7...\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1488f0000b60 for threadedDensity[24] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148958000b60 for threadedDensity[22] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 24...\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 22...\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 18...\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148928000b60 for threadedDensity[20] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 26...\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148998000b60 for threadedDensity[25] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 20...\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148918000b60 for threadedDensity[15] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148930000b60 for threadedDensity[14] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 15...\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 14...\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 25...\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1488dc000b60 for threadedDensity[17] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1489a8000b60 for threadedDensity[30] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1489b8000b60 for threadedDensity[4] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 30...\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 4...\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 17...\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148908000b60 for threadedDensity[8] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148960000b60 for threadedDensity[13] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148940000b60 for threadedDensity[27] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 13...\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 27...\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 8...\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148968000b60 for threadedDensity[10] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148948000b60 for threadedDensity[31] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 10...\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 31...\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1488d0000b60 for threadedDensity[5] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1488f8000b60 for threadedDensity[19] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 5...\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 19...\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1488d8000b60 for threadedDensity[29] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 29...\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148990000b60 for threadedDensity[21] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 21...\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1488e8000b60 for threadedDensity[2] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 2...\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1489b0000b60 for threadedDensity[1] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 1...\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 21 done.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 0 done.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 23 done.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 2 done.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 7 done.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 16 done.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 24 done.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 22 done.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 18 done.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 20 done.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 26 done.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 25 done.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 14 done.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 15 done.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 29 done.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 8 done.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 1 done.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 30 done.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 27 done.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 13 done.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 17 done.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 11 done.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 12 done.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 6 done.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 3 done.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 28 done.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 19 done.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 5 done.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 10 done.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 31 done.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 9 done.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 4 done.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]======|\u001b[38;5;246mPerforming CiC done.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]======|\u001b[38;5;246mPerforming CiC reduction...\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x1489b0000b60 for threadedDensity[1] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x1488e8000b60 for threadedDensity[2] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x1489a0000b60 for threadedDensity[3] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x1489b8000b60 for threadedDensity[4] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x1488d0000b60 for threadedDensity[5] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x1488e0000b60 for threadedDensity[6] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148970000b60 for threadedDensity[7] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148908000b60 for threadedDensity[8] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148950000b60 for threadedDensity[9] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148968000b60 for threadedDensity[10] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148980000b60 for threadedDensity[11] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148920000b60 for threadedDensity[12] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148960000b60 for threadedDensity[13] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148930000b60 for threadedDensity[14] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148918000b60 for threadedDensity[15] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148900000b60 for threadedDensity[16] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x1488dc000b60 for threadedDensity[17] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148938000b60 for threadedDensity[18] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x1488f8000b60 for threadedDensity[19] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148928000b60 for threadedDensity[20] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148990000b60 for threadedDensity[21] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148958000b60 for threadedDensity[22] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148910000b60 for threadedDensity[23] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x1488f0000b60 for threadedDensity[24] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148998000b60 for threadedDensity[25] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148978000b60 for threadedDensity[26] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148940000b60 for threadedDensity[27] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148988000b60 for threadedDensity[28] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x1488d8000b60 for threadedDensity[29] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x1489a8000b60 for threadedDensity[30] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148948000b60 for threadedDensity[31] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]======|\u001b[38;5;246mPerforming CiC reduction done.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]====|Getting density contrast (using 32 cores and 32 arrays, parallel routine 1) done.\n",
"[02:24:48\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]====|Getting gravitational potential, periodic boundary conditions (using 32 cores)...\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated memory (1081344 bytes) at 0x55cb08c1b190 for AUX in \u001b[38;5;227mpoisson_solvers.c\u001b[0;36m:\u001b[38;5;192msolve_poisson_DFT\u001b[0;36m:\u001b[0;32m106\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08c1b190 for AUX in \u001b[38;5;227mpoisson_solvers.c\u001b[0;36m:\u001b[38;5;192msolve_poisson_DFT\u001b[0;36m:\u001b[0;32m116\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]====|Getting gravitational potential, periodic boundary conditions (using 32 cores) done.\n",
"[02:24:48\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]====|Kicking particles (using 32 cores)...\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mnkick=13\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mndrift=13\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246maiKick=0.643750\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246maDrift=0.667500\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mafKick=0.691250\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mbeta_delta=-0.037779\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mbeta_lpt_1=0.000000\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mbeta_lpt_2=0.000000\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mbeta_ext=0.000000\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated memory (1048576 bytes) at 0x55cb08c1b190 for g_pad in \u001b[38;5;227mpmcola.c\u001b[0;36m:\u001b[38;5;192mkick_pm_cola\u001b[0;36m:\u001b[0;32m478\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated memory (393216 bytes) at 0x55cb08d1b1a0 for pp in \u001b[38;5;227mpmcola.c\u001b[0;36m:\u001b[38;5;192mkick_pm_cola\u001b[0;36m:\u001b[0;32m554\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Computing short-range forces (using 8 tiles and 32 / 32 cores)...\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (8192 bytes) at 0x55cb087c1430 for tiles in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m57\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb08635220 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb08d7b1b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb08d9b1c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb08dbb1d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb08ddb1e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb08dfb1f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb08e1b200 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb08e3b210 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb08e5b220 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb08e7b230 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb08e9b240 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb08ebb250 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb08edb260 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb08efb270 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb08f1b280 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb08f3b290 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb08f5b2a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb08f7b2b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb08f9b2c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb08fbb2d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb08fdb2e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb08ffb2f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0901b300 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0903b310 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0905b320 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0907b330 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0909b340 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb090bb350 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb090db360 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb090fb370 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0911b380 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0913b390 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0915b3a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0917b3b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0919b3c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb091bb3d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb091db3e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb091fb3f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0921b400 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0923b410 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0925b420 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0927b430 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0929b440 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb092bb450 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb092db460 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb092fb470 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0931b480 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0933b490 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0935b4a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0937b4b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0939b4c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb093bb4d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb093db4e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb093fb4f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0941b500 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0943b510 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0945b520 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0947b530 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0949b540 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb094bb550 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb094db560 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb094fb570 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0951b580 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0953b590 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0955b5a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0957b5b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0959b5c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb095bb5d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb095db5e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb095fb5f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0961b600 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0963b610 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0965b620 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0967b630 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0969b640 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb096bb650 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb096db660 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb096fb670 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0971b680 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0973b690 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0975b6a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0977b6b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0979b6c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb097bb6d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb097db6e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb097fb6f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0981b700 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0983b710 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0985b720 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0987b730 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0989b740 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb098bb750 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb098db760 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb098fb770 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0991b780 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0993b790 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0995b7a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0997b7b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0999b7c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb099bb7d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb099db7e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb099fb7f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09a1b800 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09a3b810 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09a5b820 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09a7b830 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09a9b840 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09abb850 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09adb860 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09afb870 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09b1b880 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09b3b890 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09b5b8a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09b7b8b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09b9b8c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09bbb8d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09bdb8e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09bfb8f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09c1b900 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09c3b910 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09c5b920 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09c7b930 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09c9b940 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09cbb950 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09cdb960 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09cfb970 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09d1b980 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09d3b990 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09d5b9a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09d7b9b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09d9b9c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09dbb9d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09ddb9e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09dfb9f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09e1ba00 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09e3ba10 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09e5ba20 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09e7ba30 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09e9ba40 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09ebba50 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09edba60 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09efba70 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09f1ba80 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09f3ba90 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09f5baa0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09f7bab0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09f9bac0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09fbbad0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09fdbae0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09ffbaf0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a01bb00 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a03bb10 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a05bb20 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a07bb30 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a09bb40 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a0bbb50 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a0dbb60 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a0fbb70 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a11bb80 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a13bb90 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a15bba0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a17bbb0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a19bbc0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a1bbbd0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a1dbbe0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a1fbbf0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a21bc00 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a23bc10 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a25bc20 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a27bc30 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a29bc40 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a2bbc50 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a2dbc60 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a2fbc70 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a31bc80 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a33bc90 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a35bca0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a37bcb0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a39bcc0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a3bbcd0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a3dbce0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a3fbcf0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a41bd00 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a43bd10 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a45bd20 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a47bd30 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a49bd40 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a4bbd50 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a4dbd60 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a4fbd70 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a51bd80 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a53bd90 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a55bda0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a57bdb0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a59bdc0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a5bbdd0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a5dbde0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a5fbdf0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a61be00 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a63be10 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a65be20 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a67be30 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a69be40 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a6bbe50 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a6dbe60 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a6fbe70 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a71be80 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a73be90 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a75bea0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a77beb0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a79bec0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a7bbed0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a7dbee0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a7fbef0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a81bf00 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a83bf10 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a85bf20 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a87bf30 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a89bf40 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a8bbf50 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a8dbf60 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a8fbf70 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a91bf80 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a93bf90 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a95bfa0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a97bfb0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a99bfc0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a9bbfd0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a9dbfe0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a9fbff0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0aa1c000 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0aa3c010 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0aa5c020 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0aa7c030 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0aa9c040 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0aabc050 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0aadc060 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0aafc070 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ab1c080 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ab3c090 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ab5c0a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ab7c0b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ab9c0c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0abbc0d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0abdc0e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0abfc0f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ac1c100 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ac3c110 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ac5c120 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ac7c130 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ac9c140 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0acbc150 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0acdc160 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0acfc170 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ad1c180 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ad3c190 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ad5c1a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ad7c1b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ad9c1c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0adbc1d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0addc1e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0adfc1f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ae1c200 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ae3c210 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ae5c220 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ae7c230 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ae9c240 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0aebc250 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0aedc260 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0aefc270 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0af1c280 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0af3c290 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0af5c2a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0af7c2b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0af9c2c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0afbc2d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0afdc2e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0affc2f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b01c300 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b03c310 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b05c320 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b07c330 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b09c340 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b0bc350 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b0dc360 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b0fc370 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b11c380 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b13c390 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b15c3a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b17c3b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b19c3c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b1bc3d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b1dc3e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b1fc3f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b21c400 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b23c410 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b25c420 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b27c430 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b29c440 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b2bc450 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b2dc460 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b2fc470 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b31c480 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b33c490 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b35c4a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b37c4b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b39c4c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b3bc4d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b3dc4e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b3fc4f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b41c500 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b43c510 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b45c520 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b47c530 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b49c540 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b4bc550 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b4dc560 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b4fc570 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b51c580 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b53c590 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b55c5a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b57c5b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b59c5c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b5bc5d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b5dc5e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b5fc5f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b61c600 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b63c610 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b65c620 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b67c630 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b69c640 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b6bc650 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b6dc660 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b6fc670 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b71c680 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b73c690 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b75c6a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b77c6b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b79c6c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b7bc6d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b7dc6e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b7fc6f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b81c700 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b83c710 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b85c720 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b87c730 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b89c740 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b8bc750 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b8dc760 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b8fc770 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b91c780 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b93c790 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b95c7a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b97c7b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b99c7c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b9bc7d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b9dc7e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b9fc7f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ba1c800 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ba3c810 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ba5c820 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ba7c830 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ba9c840 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0babc850 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0badc860 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bafc870 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bb1c880 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bb3c890 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bb5c8a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bb7c8b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bb9c8c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bbbc8d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bbdc8e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bbfc8f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bc1c900 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bc3c910 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bc5c920 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bc7c930 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bc9c940 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bcbc950 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bcdc960 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bcfc970 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bd1c980 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bd3c990 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bd5c9a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bd7c9b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bd9c9c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bdbc9d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bddc9e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bdfc9f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0be1ca00 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0be3ca10 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0be5ca20 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0be7ca30 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0be9ca40 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bebca50 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bedca60 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0befca70 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bf1ca80 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bf3ca90 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bf5caa0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bf7cab0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bf9cac0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bfbcad0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bfdcae0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bffcaf0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c01cb00 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c03cb10 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c05cb20 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c07cb30 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c09cb40 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c0bcb50 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c0dcb60 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c0fcb70 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c11cb80 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c13cb90 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c15cba0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c17cbb0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c19cbc0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c1bcbd0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c1dcbe0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c1fcbf0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c21cc00 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c23cc10 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c25cc20 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c27cc30 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c29cc40 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c2bcc50 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c2dcc60 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c2fcc70 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c31cc80 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c33cc90 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c35cca0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c37ccb0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c39ccc0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c3bccd0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c3dcce0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c3fccf0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c41cd00 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c43cd10 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c45cd20 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c47cd30 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c49cd40 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c4bcd50 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c4dcd60 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c4fcd70 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c51cd80 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c53cd90 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c55cda0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c57cdb0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c59cdc0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c5bcdd0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c5dcde0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c5fcdf0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c61ce00 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c63ce10 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c65ce20 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c67ce30 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c69ce40 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c6bce50 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c6dce60 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c6fce70 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c71ce80 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c73ce90 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c75cea0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c77ceb0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c79cec0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c7bced0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c7dcee0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c7fcef0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c81cf00 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c83cf10 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c85cf20 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c87cf30 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c89cf40 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c8bcf50 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c8dcf60 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c8fcf70 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c91cf80 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c93cf90 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c95cfa0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c97cfb0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c99cfc0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c9bcfd0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c9dcfe0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c9fcff0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ca1d000 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ca3d010 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ca5d020 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ca7d030 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ca9d040 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0cabd050 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0cadd060 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0cafd070 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0cb1d080 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0cb3d090 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0cb5d0a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0cb7d0b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0cb9d0c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0cbbd0d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0cbdd0e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0cbfd0f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0cc1d100 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0cc3d110 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0cc5d120 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0cc7d130 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0cc9d140 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ccbd150 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ccdd160 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ccfd170 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0cd1d180 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0cd3d190 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08635220 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08d7b1b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08d9b1c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08dbb1d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08ddb1e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08dfb1f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08e1b200 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08e3b210 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08e5b220 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08e7b230 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08e9b240 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08ebb250 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08edb260 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08efb270 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08f1b280 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08f3b290 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08f5b2a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08f7b2b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08f9b2c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08fbb2d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08fdb2e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08ffb2f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0901b300 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0903b310 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0905b320 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0907b330 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0909b340 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb090bb350 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb090db360 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb090fb370 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0911b380 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0913b390 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0915b3a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0917b3b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0919b3c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb091bb3d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb091db3e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb091fb3f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0921b400 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0923b410 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0925b420 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0927b430 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0929b440 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb092bb450 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb092db460 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb092fb470 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0931b480 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0933b490 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0935b4a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0937b4b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0939b4c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb093bb4d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb093db4e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb093fb4f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0941b500 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0943b510 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0945b520 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0947b530 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0949b540 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb094bb550 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb094db560 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb094fb570 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0951b580 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0953b590 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0955b5a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0957b5b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0959b5c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb095bb5d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb095db5e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb095fb5f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0961b600 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0963b610 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0965b620 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0967b630 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0969b640 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb096bb650 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb096db660 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb096fb670 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0971b680 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0973b690 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0975b6a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0977b6b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0979b6c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb097bb6d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb097db6e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb097fb6f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0981b700 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0983b710 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0985b720 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0987b730 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0989b740 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb098bb750 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb098db760 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb098fb770 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0991b780 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0993b790 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0995b7a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0997b7b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0999b7c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb099bb7d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb099db7e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb099fb7f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09a1b800 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09a3b810 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09a5b820 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09a7b830 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09a9b840 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09abb850 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09adb860 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09afb870 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09b1b880 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09b3b890 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09b5b8a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09b7b8b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09b9b8c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09bbb8d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09bdb8e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09bfb8f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09c1b900 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09c3b910 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09c5b920 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09c7b930 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09c9b940 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09cbb950 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09cdb960 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09cfb970 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09d1b980 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09d3b990 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09d5b9a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09d7b9b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09d9b9c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09dbb9d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09ddb9e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09dfb9f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09e1ba00 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09e3ba10 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09e5ba20 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09e7ba30 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09e9ba40 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09ebba50 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09edba60 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09efba70 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09f1ba80 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09f3ba90 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09f5baa0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09f7bab0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09f9bac0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09fbbad0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09fdbae0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09ffbaf0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a01bb00 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a03bb10 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a05bb20 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a07bb30 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a09bb40 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a0bbb50 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a0dbb60 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a0fbb70 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a11bb80 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a13bb90 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a15bba0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a17bbb0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a19bbc0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a1bbbd0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a1dbbe0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a1fbbf0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a21bc00 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a23bc10 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a25bc20 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a27bc30 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a29bc40 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a2bbc50 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a2dbc60 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a2fbc70 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a31bc80 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a33bc90 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a35bca0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a37bcb0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a39bcc0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a3bbcd0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a3dbce0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a3fbcf0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a41bd00 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a43bd10 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a45bd20 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a47bd30 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a49bd40 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a4bbd50 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a4dbd60 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a4fbd70 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a51bd80 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a53bd90 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a55bda0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a57bdb0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a59bdc0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a5bbdd0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a5dbde0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a5fbdf0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a61be00 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a63be10 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a65be20 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a67be30 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a69be40 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a6bbe50 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a6dbe60 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a6fbe70 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a71be80 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a73be90 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a75bea0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a77beb0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a79bec0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a7bbed0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a7dbee0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a7fbef0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a81bf00 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a83bf10 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a85bf20 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a87bf30 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a89bf40 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a8bbf50 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a8dbf60 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a8fbf70 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a91bf80 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a93bf90 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a95bfa0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a97bfb0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a99bfc0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a9bbfd0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a9dbfe0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a9fbff0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0aa1c000 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0aa3c010 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0aa5c020 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0aa7c030 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0aa9c040 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0aabc050 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0aadc060 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0aafc070 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ab1c080 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ab3c090 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ab5c0a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ab7c0b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ab9c0c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0abbc0d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0abdc0e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0abfc0f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ac1c100 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ac3c110 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ac5c120 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ac7c130 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ac9c140 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0acbc150 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0acdc160 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0acfc170 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ad1c180 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ad3c190 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ad5c1a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ad7c1b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ad9c1c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0adbc1d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0addc1e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0adfc1f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ae1c200 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ae3c210 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ae5c220 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ae7c230 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ae9c240 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0aebc250 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0aedc260 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0aefc270 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0af1c280 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0af3c290 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0af5c2a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0af7c2b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0af9c2c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0afbc2d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0afdc2e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0affc2f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b01c300 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b03c310 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b05c320 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b07c330 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b09c340 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b0bc350 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b0dc360 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b0fc370 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b11c380 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b13c390 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b15c3a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b17c3b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b19c3c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b1bc3d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b1dc3e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b1fc3f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b21c400 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b23c410 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b25c420 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b27c430 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b29c440 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b2bc450 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b2dc460 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b2fc470 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b31c480 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b33c490 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b35c4a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b37c4b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b39c4c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b3bc4d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b3dc4e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b3fc4f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b41c500 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b43c510 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b45c520 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b47c530 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b49c540 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b4bc550 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b4dc560 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b4fc570 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b51c580 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b53c590 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b55c5a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b57c5b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b59c5c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b5bc5d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b5dc5e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b5fc5f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b61c600 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b63c610 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b65c620 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b67c630 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b69c640 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b6bc650 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b6dc660 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b6fc670 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b71c680 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b73c690 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b75c6a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b77c6b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b79c6c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b7bc6d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b7dc6e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b7fc6f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b81c700 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b83c710 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b85c720 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b87c730 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b89c740 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b8bc750 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b8dc760 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b8fc770 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b91c780 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b93c790 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b95c7a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b97c7b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b99c7c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b9bc7d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b9dc7e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b9fc7f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ba1c800 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ba3c810 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ba5c820 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ba7c830 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ba9c840 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0babc850 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0badc860 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bafc870 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bb1c880 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bb3c890 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bb5c8a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bb7c8b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bb9c8c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bbbc8d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bbdc8e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bbfc8f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bc1c900 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bc3c910 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bc5c920 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bc7c930 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bc9c940 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bcbc950 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bcdc960 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bcfc970 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bd1c980 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bd3c990 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bd5c9a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bd7c9b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bd9c9c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bdbc9d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bddc9e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bdfc9f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0be1ca00 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0be3ca10 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0be5ca20 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0be7ca30 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0be9ca40 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bebca50 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bedca60 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0befca70 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bf1ca80 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bf3ca90 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bf5caa0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bf7cab0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bf9cac0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bfbcad0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bfdcae0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bffcaf0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c01cb00 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c03cb10 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c05cb20 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c07cb30 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c09cb40 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c0bcb50 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c0dcb60 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c0fcb70 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c11cb80 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c13cb90 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c15cba0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c17cbb0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c19cbc0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c1bcbd0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c1dcbe0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c1fcbf0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c21cc00 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c23cc10 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c25cc20 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c27cc30 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c29cc40 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c2bcc50 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c2dcc60 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c2fcc70 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c31cc80 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c33cc90 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c35cca0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c37ccb0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c39ccc0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c3bccd0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c3dcce0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c3fccf0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c41cd00 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c43cd10 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c45cd20 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c47cd30 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c49cd40 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c4bcd50 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c4dcd60 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c4fcd70 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c51cd80 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c53cd90 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c55cda0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c57cdb0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c59cdc0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c5bcdd0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c5dcde0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c5fcdf0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c61ce00 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c63ce10 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c65ce20 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c67ce30 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c69ce40 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c6bce50 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c6dce60 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c6fce70 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c71ce80 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c73ce90 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c75cea0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c77ceb0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c79cec0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c7bced0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c7dcee0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c7fcef0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c81cf00 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c83cf10 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c85cf20 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c87cf30 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c89cf40 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c8bcf50 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c8dcf60 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c8fcf70 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c91cf80 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c93cf90 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c95cfa0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c97cfb0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c99cfc0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c9bcfd0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c9dcfe0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c9fcff0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ca1d000 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ca3d010 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ca5d020 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ca7d030 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ca9d040 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0cabd050 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0cadd060 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0cafd070 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0cb1d080 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0cb3d090 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0cb5d0a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0cb7d0b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0cb9d0c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0cbbd0d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0cbdd0e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0cbfd0f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0cc1d100 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0cc3d110 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0cc5d120 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0cc7d130 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0cc9d140 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ccbd150 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ccdd160 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ccfd170 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0cd1d180 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0cd3d190 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb087c1430 for tiles in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m211\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Computing short-range forces (using 8 tiles and 32 / 32 cores) done.\n",
"[02:24:48\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Acceleration loop, direction 0...\n",
"[02:24:48\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Acceleration loop, direction 0 done.\n",
"[02:24:48\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Kick loop, direction 0...\n",
"[02:24:48\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Kick loop, direction 0 done.\n",
"[02:24:48\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Acceleration loop, direction 1...\n",
"[02:24:48\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Acceleration loop, direction 1 done.\n",
"[02:24:48\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Kick loop, direction 1...\n",
"[02:24:48\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Kick loop, direction 1 done.\n",
"[02:24:48\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Acceleration loop, direction 2...\n",
"[02:24:48\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Acceleration loop, direction 2 done.\n",
"[02:24:48\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Kick loop, direction 2...\n",
"[02:24:48\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Kick loop, direction 2 done.\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08c1b190 for g_pad in \u001b[38;5;227mpmcola.c\u001b[0;36m:\u001b[38;5;192mkick_pm_cola\u001b[0;36m:\u001b[0;32m592\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08d1b1a0 for pp in \u001b[38;5;227mpmcola.c\u001b[0;36m:\u001b[38;5;192mkick_pm_cola\u001b[0;36m:\u001b[0;32m598\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]====|Kicking particles (using 32 cores) done.\n",
"[02:24:48\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]====|Drifting particles (using 32 cores)...\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mndrift=13\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mnkick=13\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246maiDrift=0.667500\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246maKick=0.691250\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mafDrift=0.715000\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246malpha_p=0.112737\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246malpha_lpt_1=0.000000\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246malpha_lpt_2=0.000000\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246malpha_ext=0.000000\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Drift loop, direction 0...\n",
"[02:24:48\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Drift loop, direction 0 done.\n",
"[02:24:48\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Drift loop, direction 1...\n",
"[02:24:48\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Drift loop, direction 1 done.\n",
"[02:24:48\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Drift loop, direction 2...\n",
"[02:24:48\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Drift loop, direction 2 done.\n",
"[02:24:48\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]====|Drifting particles (using 32 cores) done.\n",
"[02:24:48\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]==|ModuleP3M: End P3M step 14/20, time_kick:0.691250, time_drift=0.715000.\n",
"[02:24:48\u001b[00m|\u001b[38;5;159mTIMER \u001b[00m]==|Step 14/20: Density: 2.293 CPU - 0.078 wallclock seconds used.\n",
"[02:24:48\u001b[00m|\u001b[38;5;159mTIMER \u001b[00m]==|Step 14/20: Potential: 0.908 CPU - 0.041 wallclock seconds used.\n",
"[02:24:48\u001b[00m|\u001b[38;5;159mTIMER \u001b[00m]==|Step 14/20: Accelerations (long-range): 1.084 CPU - 0.038 wallclock seconds used.\n",
"[02:24:48\u001b[00m|\u001b[38;5;159mTIMER \u001b[00m]==|Step 14/20: Accelerations (short-range): 2.931 CPU - 0.204 wallclock seconds used.\n",
"[02:24:48\u001b[00m|\u001b[38;5;159mTIMER \u001b[00m]==|Step 14/20: Kick: 1.190 CPU - 0.039 wallclock seconds used.\n",
"[02:24:48\u001b[00m|\u001b[38;5;159mTIMER \u001b[00m]==|Step 14/20: Drift: 2.280 CPU - 0.074 wallclock seconds used.\n",
"[02:24:48\u001b[00m|\u001b[38;5;159mTIMER \u001b[00m]==|Step 14/20: Inputs: 0.000 CPU - 0.000 wallclock seconds used.\n",
"[02:24:48\u001b[00m|\u001b[38;5;159mTIMER \u001b[00m]==|Step 14/20: Diagnostic: 0.000 CPU - 0.000 wallclock seconds used.\n",
"[02:24:48\u001b[00m|\u001b[38;5;159mTIMER \u001b[00m]==|Step 14/20: Outputs: 0.000 CPU - 0.000 wallclock seconds used.\n",
"[02:24:48\u001b[00m|\u001b[38;5;159mTIMER \u001b[00m]==|Step 14/20: Total Evolution: 10.686 CPU - 0.473 wallclock seconds used.\n",
"[02:24:48\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]==|ModuleP3M: Begin P3M step 15/20, time_kick:0.691250, time_drift=0.715000.\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]====|\u001b[38;5;246mGiven the available memory, 4095 threads could be allocated and 32 threads will be used in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel\u001b[0;36m:\u001b[0;32m347\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]====|\u001b[38;5;246mGiven the available memory, 4095 threads could be allocated and 32 threads will be used in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m73\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]====|Getting density contrast (using 32 cores and 32 arrays, parallel routine 1)...\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]======|\u001b[38;5;246mPerforming CiC binning...\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 0...\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148980000b60 for threadedDensity[11] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 11...\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1488f8000b60 for threadedDensity[19] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148988000b60 for threadedDensity[28] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 28...\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1488dc000b60 for threadedDensity[17] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 17...\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1488e0000b60 for threadedDensity[6] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148920000b60 for threadedDensity[12] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 6...\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 12...\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148900000b60 for threadedDensity[16] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148970000b60 for threadedDensity[7] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 16...\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 7...\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148978000b60 for threadedDensity[26] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1488f0000b60 for threadedDensity[24] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148958000b60 for threadedDensity[22] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 24...\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 22...\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 26...\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1488e8000b60 for threadedDensity[2] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148938000b60 for threadedDensity[18] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148990000b60 for threadedDensity[21] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 18...\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 21...\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 2...\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148928000b60 for threadedDensity[20] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148910000b60 for threadedDensity[23] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148918000b60 for threadedDensity[15] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 23...\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 15...\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 20...\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148950000b60 for threadedDensity[9] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148998000b60 for threadedDensity[25] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148930000b60 for threadedDensity[14] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 25...\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 14...\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 9...\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148908000b60 for threadedDensity[8] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1489a0000b60 for threadedDensity[3] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 8...\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148960000b60 for threadedDensity[13] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148940000b60 for threadedDensity[27] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 13...\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 27...\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 3...\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1489b8000b60 for threadedDensity[4] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 19...\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148948000b60 for threadedDensity[31] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 4...\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1489a8000b60 for threadedDensity[30] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1488d0000b60 for threadedDensity[5] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 30...\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 5...\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 31...\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1489b0000b60 for threadedDensity[1] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 1...\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1488d8000b60 for threadedDensity[29] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 29...\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148968000b60 for threadedDensity[10] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 10...\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 0 done.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 20 done.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 18 done.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 21 done.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 16 done.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 7 done.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 26 done.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 2 done.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 24 done.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 22 done.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 9 done.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 10 done.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 15 done.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 25 done.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 29 done.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 8 done.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 11 done.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 17 done.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 13 done.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 27 done.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 1 done.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 4 done.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 28 done.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 3 done.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 6 done.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 12 done.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 5 done.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 30 done.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 31 done.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 19 done.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 14 done.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 23 done.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]======|\u001b[38;5;246mPerforming CiC done.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]======|\u001b[38;5;246mPerforming CiC reduction...\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x1489b0000b60 for threadedDensity[1] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x1488e8000b60 for threadedDensity[2] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x1489a0000b60 for threadedDensity[3] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x1489b8000b60 for threadedDensity[4] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x1488d0000b60 for threadedDensity[5] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x1488e0000b60 for threadedDensity[6] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148970000b60 for threadedDensity[7] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148908000b60 for threadedDensity[8] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148950000b60 for threadedDensity[9] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148968000b60 for threadedDensity[10] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148980000b60 for threadedDensity[11] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148920000b60 for threadedDensity[12] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148960000b60 for threadedDensity[13] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148930000b60 for threadedDensity[14] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148918000b60 for threadedDensity[15] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148900000b60 for threadedDensity[16] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x1488dc000b60 for threadedDensity[17] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148938000b60 for threadedDensity[18] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x1488f8000b60 for threadedDensity[19] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148928000b60 for threadedDensity[20] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148990000b60 for threadedDensity[21] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148958000b60 for threadedDensity[22] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148910000b60 for threadedDensity[23] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x1488f0000b60 for threadedDensity[24] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148998000b60 for threadedDensity[25] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148978000b60 for threadedDensity[26] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148940000b60 for threadedDensity[27] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148988000b60 for threadedDensity[28] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x1488d8000b60 for threadedDensity[29] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x1489a8000b60 for threadedDensity[30] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148948000b60 for threadedDensity[31] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]======|\u001b[38;5;246mPerforming CiC reduction done.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]====|Getting density contrast (using 32 cores and 32 arrays, parallel routine 1) done.\n",
"[02:24:48\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]====|Getting gravitational potential, periodic boundary conditions (using 32 cores)...\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated memory (1081344 bytes) at 0x55cb08c1b190 for AUX in \u001b[38;5;227mpoisson_solvers.c\u001b[0;36m:\u001b[38;5;192msolve_poisson_DFT\u001b[0;36m:\u001b[0;32m106\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08c1b190 for AUX in \u001b[38;5;227mpoisson_solvers.c\u001b[0;36m:\u001b[38;5;192msolve_poisson_DFT\u001b[0;36m:\u001b[0;32m116\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]====|Getting gravitational potential, periodic boundary conditions (using 32 cores) done.\n",
"[02:24:48\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]====|Kicking particles (using 32 cores)...\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mnkick=14\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mndrift=14\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246maiKick=0.691250\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246maDrift=0.715000\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mafKick=0.738750\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mbeta_delta=-0.034948\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mbeta_lpt_1=0.000000\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mbeta_lpt_2=0.000000\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mbeta_ext=0.000000\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated memory (1048576 bytes) at 0x55cb08c1b190 for g_pad in \u001b[38;5;227mpmcola.c\u001b[0;36m:\u001b[38;5;192mkick_pm_cola\u001b[0;36m:\u001b[0;32m478\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated memory (393216 bytes) at 0x55cb08d1b1a0 for pp in \u001b[38;5;227mpmcola.c\u001b[0;36m:\u001b[38;5;192mkick_pm_cola\u001b[0;36m:\u001b[0;32m554\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Computing short-range forces (using 8 tiles and 32 / 32 cores)...\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (8192 bytes) at 0x55cb08900ec0 for tiles in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m57\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb08635220 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb08d7b1b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb08d9b1c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb08dbb1d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb08ddb1e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb08dfb1f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb08e1b200 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb08e3b210 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb08e5b220 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb08e7b230 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb08e9b240 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb08ebb250 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb08edb260 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb08efb270 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb08f1b280 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb08f3b290 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb08f5b2a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb08f7b2b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb08f9b2c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb08fbb2d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb08fdb2e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb08ffb2f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0901b300 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0903b310 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0905b320 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0907b330 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0909b340 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb090bb350 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb090db360 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb090fb370 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0911b380 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0913b390 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0915b3a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0917b3b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0919b3c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb091bb3d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb091db3e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb091fb3f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0921b400 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0923b410 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0925b420 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0927b430 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0929b440 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb092bb450 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb092db460 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb092fb470 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0931b480 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0933b490 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0935b4a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0937b4b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0939b4c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb093bb4d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb093db4e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb093fb4f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0941b500 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0943b510 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0945b520 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0947b530 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0949b540 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb094bb550 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb094db560 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb094fb570 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0951b580 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0953b590 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0955b5a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0957b5b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0959b5c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb095bb5d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb095db5e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb095fb5f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0961b600 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0963b610 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0965b620 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0967b630 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0969b640 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb096bb650 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb096db660 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb096fb670 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0971b680 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0973b690 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0975b6a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0977b6b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0979b6c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb097bb6d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb097db6e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb097fb6f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0981b700 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0983b710 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0985b720 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0987b730 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0989b740 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb098bb750 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb098db760 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb098fb770 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0991b780 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0993b790 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0995b7a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0997b7b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0999b7c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb099bb7d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb099db7e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb099fb7f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09a1b800 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09a3b810 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09a5b820 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09a7b830 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09a9b840 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09abb850 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09adb860 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09afb870 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09b1b880 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09b3b890 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09b5b8a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09b7b8b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09b9b8c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09bbb8d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09bdb8e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09bfb8f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09c1b900 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09c3b910 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09c5b920 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09c7b930 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09c9b940 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09cbb950 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09cdb960 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09cfb970 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09d1b980 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09d3b990 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09d5b9a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09d7b9b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09d9b9c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09dbb9d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09ddb9e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09dfb9f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09e1ba00 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09e3ba10 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09e5ba20 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09e7ba30 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09e9ba40 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09ebba50 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09edba60 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09efba70 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09f1ba80 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09f3ba90 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09f5baa0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09f7bab0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09f9bac0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09fbbad0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09fdbae0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09ffbaf0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a01bb00 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a03bb10 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a05bb20 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a07bb30 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a09bb40 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a0bbb50 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a0dbb60 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a0fbb70 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a11bb80 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a13bb90 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a15bba0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a17bbb0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a19bbc0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a1bbbd0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a1dbbe0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a1fbbf0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a21bc00 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a23bc10 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a25bc20 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a27bc30 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a29bc40 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a2bbc50 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a2dbc60 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a2fbc70 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a31bc80 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a33bc90 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a35bca0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a37bcb0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a39bcc0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a3bbcd0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a3dbce0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a3fbcf0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a41bd00 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a43bd10 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a45bd20 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a47bd30 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a49bd40 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a4bbd50 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a4dbd60 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a4fbd70 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a51bd80 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a53bd90 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a55bda0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a57bdb0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a59bdc0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a5bbdd0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a5dbde0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a5fbdf0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a61be00 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a63be10 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a65be20 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a67be30 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a69be40 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a6bbe50 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a6dbe60 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a6fbe70 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a71be80 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a73be90 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a75bea0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a77beb0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a79bec0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a7bbed0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a7dbee0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a7fbef0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a81bf00 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a83bf10 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a85bf20 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a87bf30 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a89bf40 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a8bbf50 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a8dbf60 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a8fbf70 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a91bf80 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a93bf90 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a95bfa0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a97bfb0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a99bfc0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a9bbfd0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a9dbfe0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a9fbff0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0aa1c000 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0aa3c010 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0aa5c020 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0aa7c030 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0aa9c040 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0aabc050 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0aadc060 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0aafc070 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ab1c080 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ab3c090 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ab5c0a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ab7c0b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ab9c0c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0abbc0d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0abdc0e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0abfc0f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ac1c100 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ac3c110 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ac5c120 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ac7c130 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ac9c140 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0acbc150 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0acdc160 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0acfc170 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ad1c180 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ad3c190 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ad5c1a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ad7c1b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ad9c1c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0adbc1d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:48\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0addc1e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0adfc1f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ae1c200 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ae3c210 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ae5c220 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ae7c230 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ae9c240 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0aebc250 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0aedc260 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0aefc270 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0af1c280 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0af3c290 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0af5c2a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0af7c2b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0af9c2c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0afbc2d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0afdc2e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0affc2f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b01c300 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b03c310 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b05c320 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b07c330 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b09c340 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b0bc350 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b0dc360 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b0fc370 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b11c380 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b13c390 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b15c3a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b17c3b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b19c3c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b1bc3d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b1dc3e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b1fc3f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b21c400 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b23c410 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b25c420 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b27c430 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b29c440 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b2bc450 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b2dc460 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b2fc470 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b31c480 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b33c490 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b35c4a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b37c4b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b39c4c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b3bc4d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b3dc4e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b3fc4f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b41c500 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b43c510 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b45c520 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b47c530 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b49c540 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b4bc550 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b4dc560 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b4fc570 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b51c580 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b53c590 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b55c5a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b57c5b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b59c5c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b5bc5d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b5dc5e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b5fc5f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b61c600 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b63c610 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b65c620 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b67c630 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b69c640 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b6bc650 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b6dc660 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b6fc670 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b71c680 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b73c690 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b75c6a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b77c6b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b79c6c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b7bc6d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b7dc6e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b7fc6f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b81c700 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b83c710 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b85c720 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b87c730 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b89c740 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b8bc750 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b8dc760 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b8fc770 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b91c780 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b93c790 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b95c7a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b97c7b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b99c7c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b9bc7d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b9dc7e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b9fc7f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ba1c800 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ba3c810 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ba5c820 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ba7c830 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ba9c840 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0babc850 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0badc860 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bafc870 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bb1c880 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bb3c890 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bb5c8a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bb7c8b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bb9c8c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bbbc8d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bbdc8e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bbfc8f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bc1c900 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bc3c910 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bc5c920 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bc7c930 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bc9c940 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bcbc950 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bcdc960 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bcfc970 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bd1c980 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bd3c990 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bd5c9a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bd7c9b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bd9c9c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bdbc9d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bddc9e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bdfc9f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0be1ca00 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0be3ca10 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0be5ca20 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0be7ca30 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0be9ca40 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bebca50 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bedca60 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0befca70 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bf1ca80 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bf3ca90 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bf5caa0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bf7cab0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bf9cac0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bfbcad0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bfdcae0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bffcaf0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c01cb00 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c03cb10 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c05cb20 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c07cb30 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c09cb40 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c0bcb50 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c0dcb60 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c0fcb70 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c11cb80 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c13cb90 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c15cba0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c17cbb0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c19cbc0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c1bcbd0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c1dcbe0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c1fcbf0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c21cc00 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c23cc10 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c25cc20 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c27cc30 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c29cc40 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c2bcc50 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c2dcc60 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c2fcc70 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c31cc80 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c33cc90 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c35cca0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c37ccb0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c39ccc0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c3bccd0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c3dcce0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c3fccf0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c41cd00 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c43cd10 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c45cd20 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c47cd30 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c49cd40 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c4bcd50 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c4dcd60 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c4fcd70 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c51cd80 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c53cd90 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c55cda0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c57cdb0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c59cdc0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c5bcdd0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c5dcde0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c5fcdf0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c61ce00 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c63ce10 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c65ce20 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c67ce30 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c69ce40 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c6bce50 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c6dce60 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c6fce70 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c71ce80 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c73ce90 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c75cea0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c77ceb0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c79cec0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c7bced0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c7dcee0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c7fcef0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c81cf00 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c83cf10 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c85cf20 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c87cf30 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c89cf40 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c8bcf50 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c8dcf60 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c8fcf70 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c91cf80 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c93cf90 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c95cfa0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c97cfb0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c99cfc0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c9bcfd0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c9dcfe0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c9fcff0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ca1d000 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ca3d010 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ca5d020 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ca7d030 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ca9d040 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0cabd050 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0cadd060 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0cafd070 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0cb1d080 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0cb3d090 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0cb5d0a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0cb7d0b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0cb9d0c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0cbbd0d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0cbdd0e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0cbfd0f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0cc1d100 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0cc3d110 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0cc5d120 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0cc7d130 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0cc9d140 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ccbd150 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ccdd160 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ccfd170 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0cd1d180 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0cd3d190 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08635220 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08d7b1b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08d9b1c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08dbb1d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08ddb1e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08dfb1f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08e1b200 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08e3b210 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08e5b220 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08e7b230 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08e9b240 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08ebb250 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08edb260 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08efb270 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08f1b280 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08f3b290 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08f5b2a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08f7b2b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08f9b2c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08fbb2d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08fdb2e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08ffb2f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0901b300 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0903b310 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0905b320 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0907b330 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0909b340 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb090bb350 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb090db360 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb090fb370 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0911b380 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0913b390 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0915b3a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0917b3b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0919b3c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb091bb3d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb091db3e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb091fb3f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0921b400 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0923b410 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0925b420 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0927b430 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0929b440 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb092bb450 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb092db460 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb092fb470 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0931b480 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0933b490 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0935b4a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0937b4b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0939b4c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb093bb4d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb093db4e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb093fb4f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0941b500 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0943b510 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0945b520 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0947b530 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0949b540 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb094bb550 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb094db560 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb094fb570 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0951b580 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0953b590 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0955b5a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0957b5b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0959b5c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb095bb5d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb095db5e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb095fb5f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0961b600 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0963b610 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0965b620 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0967b630 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0969b640 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb096bb650 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb096db660 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb096fb670 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0971b680 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0973b690 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0975b6a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0977b6b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0979b6c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb097bb6d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb097db6e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb097fb6f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0981b700 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0983b710 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0985b720 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0987b730 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0989b740 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb098bb750 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb098db760 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb098fb770 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0991b780 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0993b790 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0995b7a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0997b7b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0999b7c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb099bb7d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb099db7e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb099fb7f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09a1b800 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09a3b810 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09a5b820 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09a7b830 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09a9b840 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09abb850 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09adb860 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09afb870 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09b1b880 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09b3b890 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09b5b8a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09b7b8b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09b9b8c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09bbb8d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09bdb8e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09bfb8f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09c1b900 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09c3b910 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09c5b920 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09c7b930 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09c9b940 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09cbb950 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09cdb960 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09cfb970 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09d1b980 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09d3b990 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09d5b9a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09d7b9b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09d9b9c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09dbb9d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09ddb9e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09dfb9f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09e1ba00 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09e3ba10 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09e5ba20 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09e7ba30 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09e9ba40 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09ebba50 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09edba60 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09efba70 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09f1ba80 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09f3ba90 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09f5baa0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09f7bab0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09f9bac0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09fbbad0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09fdbae0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09ffbaf0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a01bb00 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a03bb10 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a05bb20 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a07bb30 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a09bb40 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a0bbb50 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a0dbb60 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a0fbb70 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a11bb80 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a13bb90 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a15bba0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a17bbb0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a19bbc0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a1bbbd0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a1dbbe0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a1fbbf0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a21bc00 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a23bc10 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a25bc20 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a27bc30 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a29bc40 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a2bbc50 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a2dbc60 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a2fbc70 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a31bc80 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a33bc90 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a35bca0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a37bcb0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a39bcc0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a3bbcd0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a3dbce0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a3fbcf0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a41bd00 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a43bd10 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a45bd20 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a47bd30 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a49bd40 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a4bbd50 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a4dbd60 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a4fbd70 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a51bd80 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a53bd90 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a55bda0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a57bdb0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a59bdc0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a5bbdd0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a5dbde0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a5fbdf0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a61be00 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a63be10 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a65be20 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a67be30 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a69be40 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a6bbe50 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a6dbe60 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a6fbe70 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a71be80 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a73be90 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a75bea0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a77beb0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a79bec0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a7bbed0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a7dbee0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a7fbef0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a81bf00 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a83bf10 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a85bf20 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a87bf30 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a89bf40 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a8bbf50 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a8dbf60 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a8fbf70 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a91bf80 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a93bf90 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a95bfa0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a97bfb0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a99bfc0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a9bbfd0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a9dbfe0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a9fbff0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0aa1c000 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0aa3c010 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0aa5c020 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0aa7c030 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0aa9c040 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0aabc050 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0aadc060 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0aafc070 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ab1c080 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ab3c090 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ab5c0a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ab7c0b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ab9c0c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0abbc0d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0abdc0e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0abfc0f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ac1c100 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ac3c110 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ac5c120 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ac7c130 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ac9c140 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0acbc150 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0acdc160 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0acfc170 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ad1c180 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ad3c190 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ad5c1a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ad7c1b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ad9c1c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0adbc1d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0addc1e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0adfc1f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ae1c200 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ae3c210 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ae5c220 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ae7c230 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ae9c240 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0aebc250 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0aedc260 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0aefc270 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0af1c280 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0af3c290 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0af5c2a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0af7c2b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0af9c2c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0afbc2d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0afdc2e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0affc2f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b01c300 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b03c310 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b05c320 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b07c330 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b09c340 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b0bc350 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b0dc360 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b0fc370 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b11c380 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b13c390 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b15c3a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b17c3b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b19c3c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b1bc3d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b1dc3e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b1fc3f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b21c400 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b23c410 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b25c420 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b27c430 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b29c440 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b2bc450 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b2dc460 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b2fc470 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b31c480 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b33c490 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b35c4a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b37c4b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b39c4c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b3bc4d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b3dc4e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b3fc4f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b41c500 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b43c510 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b45c520 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b47c530 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b49c540 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b4bc550 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b4dc560 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b4fc570 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b51c580 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b53c590 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b55c5a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b57c5b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b59c5c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b5bc5d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b5dc5e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b5fc5f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b61c600 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b63c610 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b65c620 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b67c630 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b69c640 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b6bc650 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b6dc660 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b6fc670 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b71c680 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b73c690 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b75c6a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b77c6b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b79c6c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b7bc6d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b7dc6e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b7fc6f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b81c700 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b83c710 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b85c720 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b87c730 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b89c740 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b8bc750 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b8dc760 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b8fc770 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b91c780 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b93c790 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b95c7a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b97c7b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b99c7c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b9bc7d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b9dc7e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b9fc7f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ba1c800 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ba3c810 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ba5c820 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ba7c830 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ba9c840 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0babc850 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0badc860 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bafc870 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bb1c880 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bb3c890 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bb5c8a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bb7c8b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bb9c8c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bbbc8d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bbdc8e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bbfc8f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bc1c900 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bc3c910 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bc5c920 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bc7c930 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bc9c940 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bcbc950 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bcdc960 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bcfc970 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bd1c980 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bd3c990 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bd5c9a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bd7c9b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bd9c9c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bdbc9d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bddc9e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bdfc9f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0be1ca00 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0be3ca10 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0be5ca20 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0be7ca30 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0be9ca40 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bebca50 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bedca60 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0befca70 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bf1ca80 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bf3ca90 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bf5caa0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bf7cab0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bf9cac0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bfbcad0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bfdcae0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bffcaf0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c01cb00 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c03cb10 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c05cb20 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c07cb30 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c09cb40 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c0bcb50 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c0dcb60 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c0fcb70 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c11cb80 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c13cb90 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c15cba0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c17cbb0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c19cbc0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c1bcbd0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c1dcbe0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c1fcbf0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c21cc00 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c23cc10 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c25cc20 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c27cc30 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c29cc40 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c2bcc50 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c2dcc60 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c2fcc70 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c31cc80 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c33cc90 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c35cca0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c37ccb0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c39ccc0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c3bccd0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c3dcce0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c3fccf0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c41cd00 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c43cd10 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c45cd20 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c47cd30 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c49cd40 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c4bcd50 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c4dcd60 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c4fcd70 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c51cd80 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c53cd90 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c55cda0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c57cdb0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c59cdc0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c5bcdd0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c5dcde0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c5fcdf0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c61ce00 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c63ce10 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c65ce20 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c67ce30 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c69ce40 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c6bce50 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c6dce60 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c6fce70 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c71ce80 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c73ce90 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c75cea0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c77ceb0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c79cec0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c7bced0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c7dcee0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c7fcef0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c81cf00 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c83cf10 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c85cf20 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c87cf30 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c89cf40 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c8bcf50 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c8dcf60 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c8fcf70 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c91cf80 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c93cf90 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c95cfa0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c97cfb0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c99cfc0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c9bcfd0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c9dcfe0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c9fcff0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ca1d000 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ca3d010 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ca5d020 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ca7d030 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ca9d040 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0cabd050 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0cadd060 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0cafd070 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0cb1d080 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0cb3d090 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0cb5d0a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0cb7d0b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0cb9d0c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0cbbd0d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0cbdd0e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0cbfd0f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0cc1d100 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0cc3d110 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0cc5d120 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0cc7d130 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0cc9d140 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ccbd150 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ccdd160 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ccfd170 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0cd1d180 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0cd3d190 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08900ec0 for tiles in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m211\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Computing short-range forces (using 8 tiles and 32 / 32 cores) done.\n",
"[02:24:49\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Acceleration loop, direction 0...\n",
"[02:24:49\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Acceleration loop, direction 0 done.\n",
"[02:24:49\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Kick loop, direction 0...\n",
"[02:24:49\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Kick loop, direction 0 done.\n",
"[02:24:49\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Acceleration loop, direction 1...\n",
"[02:24:49\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Acceleration loop, direction 1 done.\n",
"[02:24:49\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Kick loop, direction 1...\n",
"[02:24:49\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Kick loop, direction 1 done.\n",
"[02:24:49\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Acceleration loop, direction 2...\n",
"[02:24:49\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Acceleration loop, direction 2 done.\n",
"[02:24:49\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Kick loop, direction 2...\n",
"[02:24:49\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Kick loop, direction 2 done.\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08c1b190 for g_pad in \u001b[38;5;227mpmcola.c\u001b[0;36m:\u001b[38;5;192mkick_pm_cola\u001b[0;36m:\u001b[0;32m592\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08d1b1a0 for pp in \u001b[38;5;227mpmcola.c\u001b[0;36m:\u001b[38;5;192mkick_pm_cola\u001b[0;36m:\u001b[0;32m598\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]====|Kicking particles (using 32 cores) done.\n",
"[02:24:49\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]====|Drifting particles (using 32 cores)...\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mndrift=14\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mnkick=14\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246maiDrift=0.715000\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246maKick=0.738750\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mafDrift=0.762500\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246malpha_p=0.097587\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246malpha_lpt_1=0.000000\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246malpha_lpt_2=0.000000\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246malpha_ext=0.000000\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Drift loop, direction 0...\n",
"[02:24:49\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Drift loop, direction 0 done.\n",
"[02:24:49\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Drift loop, direction 1...\n",
"[02:24:49\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Drift loop, direction 1 done.\n",
"[02:24:49\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Drift loop, direction 2...\n",
"[02:24:49\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Drift loop, direction 2 done.\n",
"[02:24:49\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]====|Drifting particles (using 32 cores) done.\n",
"[02:24:49\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]==|ModuleP3M: End P3M step 15/20, time_kick:0.738750, time_drift=0.762500.\n",
"[02:24:49\u001b[00m|\u001b[38;5;159mTIMER \u001b[00m]==|Step 15/20: Density: 13.250 CPU - 0.434 wallclock seconds used.\n",
"[02:24:49\u001b[00m|\u001b[38;5;159mTIMER \u001b[00m]==|Step 15/20: Potential: 0.950 CPU - 0.043 wallclock seconds used.\n",
"[02:24:49\u001b[00m|\u001b[38;5;159mTIMER \u001b[00m]==|Step 15/20: Accelerations (long-range): 1.080 CPU - 0.038 wallclock seconds used.\n",
"[02:24:49\u001b[00m|\u001b[38;5;159mTIMER \u001b[00m]==|Step 15/20: Accelerations (short-range): 2.427 CPU - 0.194 wallclock seconds used.\n",
"[02:24:49\u001b[00m|\u001b[38;5;159mTIMER \u001b[00m]==|Step 15/20: Kick: 1.188 CPU - 0.039 wallclock seconds used.\n",
"[02:24:49\u001b[00m|\u001b[38;5;159mTIMER \u001b[00m]==|Step 15/20: Drift: 2.274 CPU - 0.074 wallclock seconds used.\n",
"[02:24:49\u001b[00m|\u001b[38;5;159mTIMER \u001b[00m]==|Step 15/20: Inputs: 0.000 CPU - 0.000 wallclock seconds used.\n",
"[02:24:49\u001b[00m|\u001b[38;5;159mTIMER \u001b[00m]==|Step 15/20: Diagnostic: 0.000 CPU - 0.000 wallclock seconds used.\n",
"[02:24:49\u001b[00m|\u001b[38;5;159mTIMER \u001b[00m]==|Step 15/20: Outputs: 0.000 CPU - 0.000 wallclock seconds used.\n",
"[02:24:49\u001b[00m|\u001b[38;5;159mTIMER \u001b[00m]==|Step 15/20: Total Evolution: 21.170 CPU - 0.821 wallclock seconds used.\n",
"[02:24:49\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]==|ModuleP3M: Begin P3M step 16/20, time_kick:0.738750, time_drift=0.762500.\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]====|\u001b[38;5;246mGiven the available memory, 4095 threads could be allocated and 32 threads will be used in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel\u001b[0;36m:\u001b[0;32m347\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]====|\u001b[38;5;246mGiven the available memory, 4095 threads could be allocated and 32 threads will be used in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m73\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]====|Getting density contrast (using 32 cores and 32 arrays, parallel routine 1)...\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]======|\u001b[38;5;246mPerforming CiC binning...\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 0...\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148948000b60 for threadedDensity[31] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 31...\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1488d8000b60 for threadedDensity[29] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 29...\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148920000b60 for threadedDensity[12] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148900000b60 for threadedDensity[16] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 12...\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 16...\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1488f0000b60 for threadedDensity[24] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148958000b60 for threadedDensity[22] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 24...\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 22...\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148968000b60 for threadedDensity[10] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148918000b60 for threadedDensity[15] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 10...\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148910000b60 for threadedDensity[23] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148998000b60 for threadedDensity[25] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 23...\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 25...\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148970000b60 for threadedDensity[7] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1488e8000b60 for threadedDensity[2] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 7...\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 2...\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 15...\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1488f8000b60 for threadedDensity[19] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1488d0000b60 for threadedDensity[5] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 19...\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1489a0000b60 for threadedDensity[3] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148940000b60 for threadedDensity[27] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148960000b60 for threadedDensity[13] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 27...\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 13...\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 5...\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1489b8000b60 for threadedDensity[4] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 3...\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 4...\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148908000b60 for threadedDensity[8] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1489a8000b60 for threadedDensity[30] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 8...\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 30...\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148988000b60 for threadedDensity[28] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 28...\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148930000b60 for threadedDensity[14] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 14...\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148980000b60 for threadedDensity[11] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 11...\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148978000b60 for threadedDensity[26] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 26...\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148928000b60 for threadedDensity[20] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148950000b60 for threadedDensity[9] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 20...\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 9...\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1488e0000b60 for threadedDensity[6] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 6...\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1489b0000b60 for threadedDensity[1] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 1...\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148938000b60 for threadedDensity[18] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 18...\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1488dc000b60 for threadedDensity[17] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 17...\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148990000b60 for threadedDensity[21] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 21...\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 18 done.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 17 done.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 20 done.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 0 done.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 7 done.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 16 done.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 2 done.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 26 done.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 24 done.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 22 done.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 21 done.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 10 done.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 9 done.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 15 done.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 25 done.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 23 done.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 6 done.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 12 done.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 5 done.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 29 done.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 1 done.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 4 done.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 27 done.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 13 done.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 3 done.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 14 done.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 30 done.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 8 done.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 28 done.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 11 done.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 19 done.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 31 done.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]======|\u001b[38;5;246mPerforming CiC done.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]======|\u001b[38;5;246mPerforming CiC reduction...\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x1489b0000b60 for threadedDensity[1] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x1488e8000b60 for threadedDensity[2] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x1489a0000b60 for threadedDensity[3] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x1489b8000b60 for threadedDensity[4] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x1488d0000b60 for threadedDensity[5] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x1488e0000b60 for threadedDensity[6] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148970000b60 for threadedDensity[7] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148908000b60 for threadedDensity[8] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148950000b60 for threadedDensity[9] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148968000b60 for threadedDensity[10] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148980000b60 for threadedDensity[11] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148920000b60 for threadedDensity[12] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148960000b60 for threadedDensity[13] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148930000b60 for threadedDensity[14] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148918000b60 for threadedDensity[15] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148900000b60 for threadedDensity[16] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x1488dc000b60 for threadedDensity[17] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148938000b60 for threadedDensity[18] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x1488f8000b60 for threadedDensity[19] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148928000b60 for threadedDensity[20] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148990000b60 for threadedDensity[21] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148958000b60 for threadedDensity[22] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148910000b60 for threadedDensity[23] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x1488f0000b60 for threadedDensity[24] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148998000b60 for threadedDensity[25] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148978000b60 for threadedDensity[26] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148940000b60 for threadedDensity[27] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148988000b60 for threadedDensity[28] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x1488d8000b60 for threadedDensity[29] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x1489a8000b60 for threadedDensity[30] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148948000b60 for threadedDensity[31] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]======|\u001b[38;5;246mPerforming CiC reduction done.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]====|Getting density contrast (using 32 cores and 32 arrays, parallel routine 1) done.\n",
"[02:24:49\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]====|Getting gravitational potential, periodic boundary conditions (using 32 cores)...\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated memory (1081344 bytes) at 0x55cb08c1b190 for AUX in \u001b[38;5;227mpoisson_solvers.c\u001b[0;36m:\u001b[38;5;192msolve_poisson_DFT\u001b[0;36m:\u001b[0;32m106\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08c1b190 for AUX in \u001b[38;5;227mpoisson_solvers.c\u001b[0;36m:\u001b[38;5;192msolve_poisson_DFT\u001b[0;36m:\u001b[0;32m116\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]====|Getting gravitational potential, periodic boundary conditions (using 32 cores) done.\n",
"[02:24:49\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]====|Kicking particles (using 32 cores)...\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mnkick=15\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mndrift=15\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246maiKick=0.738750\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246maDrift=0.762500\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mafKick=0.786250\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mbeta_delta=-0.032338\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mbeta_lpt_1=0.000000\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mbeta_lpt_2=0.000000\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mbeta_ext=0.000000\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated memory (1048576 bytes) at 0x55cb08c1b190 for g_pad in \u001b[38;5;227mpmcola.c\u001b[0;36m:\u001b[38;5;192mkick_pm_cola\u001b[0;36m:\u001b[0;32m478\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated memory (393216 bytes) at 0x55cb08d1b1a0 for pp in \u001b[38;5;227mpmcola.c\u001b[0;36m:\u001b[38;5;192mkick_pm_cola\u001b[0;36m:\u001b[0;32m554\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Computing short-range forces (using 8 tiles and 32 / 32 cores)...\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (8192 bytes) at 0x55cb087c18b0 for tiles in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m57\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb08635220 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb08d7b1b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb08d9b1c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb08dbb1d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb08ddb1e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb08dfb1f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb08e1b200 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb08e3b210 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb08e5b220 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb08e7b230 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb08e9b240 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb08ebb250 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb08edb260 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb08efb270 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb08f1b280 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb08f3b290 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb08f5b2a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb08f7b2b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb08f9b2c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb08fbb2d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb08fdb2e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb08ffb2f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0901b300 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0903b310 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0905b320 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0907b330 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0909b340 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb090bb350 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb090db360 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb090fb370 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0911b380 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0913b390 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0915b3a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0917b3b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0919b3c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb091bb3d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb091db3e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb091fb3f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0921b400 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0923b410 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0925b420 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0927b430 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0929b440 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb092bb450 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb092db460 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb092fb470 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0931b480 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0933b490 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0935b4a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0937b4b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0939b4c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb093bb4d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb093db4e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb093fb4f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0941b500 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0943b510 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0945b520 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0947b530 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0949b540 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb094bb550 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb094db560 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb094fb570 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0951b580 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0953b590 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0955b5a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0957b5b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0959b5c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb095bb5d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb095db5e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb095fb5f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0961b600 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0963b610 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0965b620 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0967b630 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0969b640 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb096bb650 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb096db660 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb096fb670 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0971b680 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0973b690 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0975b6a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0977b6b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0979b6c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb097bb6d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb097db6e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb097fb6f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0981b700 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0983b710 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0985b720 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0987b730 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0989b740 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb098bb750 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb098db760 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb098fb770 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0991b780 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0993b790 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0995b7a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0997b7b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0999b7c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb099bb7d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb099db7e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb099fb7f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09a1b800 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09a3b810 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09a5b820 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09a7b830 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09a9b840 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09abb850 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09adb860 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09afb870 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09b1b880 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09b3b890 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09b5b8a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09b7b8b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09b9b8c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09bbb8d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09bdb8e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09bfb8f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09c1b900 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09c3b910 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09c5b920 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09c7b930 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09c9b940 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09cbb950 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09cdb960 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09cfb970 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09d1b980 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09d3b990 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09d5b9a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09d7b9b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09d9b9c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09dbb9d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09ddb9e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09dfb9f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09e1ba00 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09e3ba10 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09e5ba20 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09e7ba30 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09e9ba40 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09ebba50 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09edba60 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09efba70 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09f1ba80 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09f3ba90 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09f5baa0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09f7bab0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09f9bac0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09fbbad0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09fdbae0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09ffbaf0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a01bb00 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a03bb10 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a05bb20 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a07bb30 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a09bb40 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a0bbb50 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a0dbb60 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a0fbb70 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a11bb80 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a13bb90 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a15bba0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a17bbb0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a19bbc0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a1bbbd0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a1dbbe0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a1fbbf0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a21bc00 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a23bc10 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a25bc20 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a27bc30 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a29bc40 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a2bbc50 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a2dbc60 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a2fbc70 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a31bc80 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a33bc90 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a35bca0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a37bcb0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a39bcc0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a3bbcd0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a3dbce0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a3fbcf0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a41bd00 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a43bd10 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a45bd20 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a47bd30 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a49bd40 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a4bbd50 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a4dbd60 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a4fbd70 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a51bd80 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a53bd90 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a55bda0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a57bdb0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a59bdc0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a5bbdd0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a5dbde0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a5fbdf0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a61be00 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a63be10 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a65be20 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a67be30 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a69be40 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a6bbe50 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a6dbe60 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a6fbe70 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a71be80 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a73be90 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a75bea0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a77beb0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a79bec0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a7bbed0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a7dbee0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a7fbef0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a81bf00 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a83bf10 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a85bf20 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a87bf30 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a89bf40 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a8bbf50 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a8dbf60 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a8fbf70 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a91bf80 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a93bf90 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a95bfa0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a97bfb0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a99bfc0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a9bbfd0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a9dbfe0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a9fbff0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0aa1c000 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0aa3c010 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0aa5c020 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0aa7c030 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0aa9c040 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0aabc050 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0aadc060 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0aafc070 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ab1c080 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ab3c090 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ab5c0a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ab7c0b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ab9c0c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0abbc0d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0abdc0e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0abfc0f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ac1c100 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ac3c110 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ac5c120 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ac7c130 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ac9c140 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0acbc150 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0acdc160 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0acfc170 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ad1c180 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ad3c190 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ad5c1a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ad7c1b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ad9c1c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0adbc1d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0addc1e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0adfc1f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ae1c200 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ae3c210 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ae5c220 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ae7c230 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ae9c240 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0aebc250 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0aedc260 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0aefc270 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0af1c280 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0af3c290 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0af5c2a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0af7c2b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0af9c2c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0afbc2d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0afdc2e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0affc2f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b01c300 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b03c310 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b05c320 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b07c330 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b09c340 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b0bc350 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b0dc360 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b0fc370 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b11c380 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b13c390 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b15c3a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b17c3b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b19c3c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b1bc3d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b1dc3e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b1fc3f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b21c400 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b23c410 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b25c420 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b27c430 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b29c440 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b2bc450 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b2dc460 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b2fc470 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b31c480 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b33c490 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b35c4a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b37c4b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b39c4c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b3bc4d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b3dc4e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b3fc4f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b41c500 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b43c510 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b45c520 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b47c530 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b49c540 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b4bc550 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b4dc560 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b4fc570 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b51c580 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b53c590 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b55c5a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b57c5b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b59c5c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b5bc5d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b5dc5e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b5fc5f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b61c600 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b63c610 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b65c620 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b67c630 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b69c640 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b6bc650 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b6dc660 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b6fc670 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b71c680 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b73c690 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b75c6a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b77c6b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b79c6c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b7bc6d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b7dc6e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b7fc6f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b81c700 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b83c710 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b85c720 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b87c730 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b89c740 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b8bc750 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b8dc760 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b8fc770 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b91c780 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b93c790 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b95c7a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b97c7b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b99c7c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b9bc7d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b9dc7e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b9fc7f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ba1c800 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ba3c810 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ba5c820 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ba7c830 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ba9c840 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0babc850 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0badc860 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bafc870 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bb1c880 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bb3c890 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bb5c8a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bb7c8b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bb9c8c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bbbc8d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bbdc8e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bbfc8f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bc1c900 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bc3c910 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bc5c920 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bc7c930 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bc9c940 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bcbc950 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bcdc960 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bcfc970 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bd1c980 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bd3c990 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bd5c9a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bd7c9b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bd9c9c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bdbc9d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bddc9e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bdfc9f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0be1ca00 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0be3ca10 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0be5ca20 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0be7ca30 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0be9ca40 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bebca50 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bedca60 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0befca70 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bf1ca80 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bf3ca90 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bf5caa0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bf7cab0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bf9cac0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bfbcad0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bfdcae0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bffcaf0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c01cb00 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c03cb10 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c05cb20 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c07cb30 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c09cb40 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c0bcb50 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c0dcb60 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c0fcb70 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c11cb80 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c13cb90 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c15cba0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c17cbb0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c19cbc0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c1bcbd0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c1dcbe0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c1fcbf0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c21cc00 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c23cc10 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c25cc20 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c27cc30 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c29cc40 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c2bcc50 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c2dcc60 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c2fcc70 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c31cc80 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c33cc90 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c35cca0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c37ccb0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c39ccc0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c3bccd0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c3dcce0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c3fccf0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c41cd00 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c43cd10 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c45cd20 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c47cd30 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c49cd40 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c4bcd50 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c4dcd60 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c4fcd70 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c51cd80 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c53cd90 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c55cda0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c57cdb0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c59cdc0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c5bcdd0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c5dcde0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c5fcdf0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c61ce00 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c63ce10 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c65ce20 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c67ce30 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c69ce40 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c6bce50 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c6dce60 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c6fce70 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c71ce80 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c73ce90 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c75cea0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c77ceb0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c79cec0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c7bced0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c7dcee0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c7fcef0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c81cf00 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c83cf10 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c85cf20 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c87cf30 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c89cf40 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c8bcf50 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c8dcf60 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c8fcf70 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c91cf80 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c93cf90 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c95cfa0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c97cfb0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c99cfc0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c9bcfd0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c9dcfe0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c9fcff0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ca1d000 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ca3d010 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ca5d020 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ca7d030 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ca9d040 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0cabd050 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0cadd060 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0cafd070 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0cb1d080 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0cb3d090 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0cb5d0a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0cb7d0b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0cb9d0c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0cbbd0d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0cbdd0e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0cbfd0f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0cc1d100 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0cc3d110 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0cc5d120 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0cc7d130 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0cc9d140 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ccbd150 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ccdd160 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ccfd170 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0cd1d180 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:49\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0cd3d190 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08635220 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08d7b1b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08d9b1c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08dbb1d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08ddb1e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08dfb1f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08e1b200 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08e3b210 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08e5b220 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08e7b230 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08e9b240 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08ebb250 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08edb260 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08efb270 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08f1b280 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08f3b290 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08f5b2a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08f7b2b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08f9b2c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08fbb2d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08fdb2e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08ffb2f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0901b300 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0903b310 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0905b320 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0907b330 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0909b340 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb090bb350 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb090db360 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb090fb370 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0911b380 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0913b390 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0915b3a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0917b3b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0919b3c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb091bb3d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb091db3e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb091fb3f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0921b400 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0923b410 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0925b420 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0927b430 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0929b440 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb092bb450 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb092db460 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb092fb470 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0931b480 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0933b490 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0935b4a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0937b4b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0939b4c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb093bb4d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb093db4e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb093fb4f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0941b500 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0943b510 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0945b520 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0947b530 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0949b540 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb094bb550 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb094db560 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb094fb570 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0951b580 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0953b590 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0955b5a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0957b5b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0959b5c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb095bb5d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb095db5e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb095fb5f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0961b600 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0963b610 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0965b620 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0967b630 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0969b640 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb096bb650 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb096db660 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb096fb670 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0971b680 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0973b690 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0975b6a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0977b6b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0979b6c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb097bb6d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb097db6e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb097fb6f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0981b700 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0983b710 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0985b720 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0987b730 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0989b740 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb098bb750 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb098db760 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb098fb770 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0991b780 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0993b790 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0995b7a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0997b7b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0999b7c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb099bb7d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb099db7e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb099fb7f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09a1b800 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09a3b810 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09a5b820 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09a7b830 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09a9b840 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09abb850 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09adb860 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09afb870 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09b1b880 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09b3b890 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09b5b8a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09b7b8b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09b9b8c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09bbb8d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09bdb8e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09bfb8f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09c1b900 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09c3b910 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09c5b920 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09c7b930 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09c9b940 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09cbb950 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09cdb960 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09cfb970 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09d1b980 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09d3b990 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09d5b9a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09d7b9b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09d9b9c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09dbb9d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09ddb9e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09dfb9f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09e1ba00 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09e3ba10 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09e5ba20 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09e7ba30 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09e9ba40 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09ebba50 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09edba60 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09efba70 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09f1ba80 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09f3ba90 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09f5baa0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09f7bab0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09f9bac0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09fbbad0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09fdbae0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09ffbaf0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a01bb00 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a03bb10 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a05bb20 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a07bb30 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a09bb40 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a0bbb50 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a0dbb60 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a0fbb70 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a11bb80 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a13bb90 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a15bba0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a17bbb0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a19bbc0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a1bbbd0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a1dbbe0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a1fbbf0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a21bc00 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a23bc10 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a25bc20 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a27bc30 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a29bc40 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a2bbc50 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a2dbc60 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a2fbc70 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a31bc80 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a33bc90 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a35bca0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a37bcb0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a39bcc0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a3bbcd0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a3dbce0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a3fbcf0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a41bd00 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a43bd10 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a45bd20 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a47bd30 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a49bd40 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a4bbd50 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a4dbd60 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a4fbd70 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a51bd80 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a53bd90 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a55bda0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a57bdb0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a59bdc0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a5bbdd0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a5dbde0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a5fbdf0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a61be00 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a63be10 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a65be20 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a67be30 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a69be40 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a6bbe50 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a6dbe60 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a6fbe70 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a71be80 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a73be90 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a75bea0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a77beb0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a79bec0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a7bbed0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a7dbee0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a7fbef0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a81bf00 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a83bf10 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a85bf20 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a87bf30 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a89bf40 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a8bbf50 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a8dbf60 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a8fbf70 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a91bf80 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a93bf90 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a95bfa0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a97bfb0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a99bfc0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a9bbfd0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a9dbfe0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a9fbff0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0aa1c000 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0aa3c010 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0aa5c020 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0aa7c030 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0aa9c040 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0aabc050 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0aadc060 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0aafc070 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ab1c080 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ab3c090 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ab5c0a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ab7c0b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ab9c0c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0abbc0d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0abdc0e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0abfc0f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ac1c100 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ac3c110 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ac5c120 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ac7c130 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ac9c140 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0acbc150 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0acdc160 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0acfc170 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ad1c180 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ad3c190 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ad5c1a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ad7c1b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ad9c1c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0adbc1d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0addc1e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0adfc1f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ae1c200 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ae3c210 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ae5c220 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ae7c230 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ae9c240 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0aebc250 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0aedc260 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0aefc270 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0af1c280 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0af3c290 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0af5c2a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0af7c2b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0af9c2c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0afbc2d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0afdc2e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0affc2f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b01c300 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b03c310 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b05c320 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b07c330 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b09c340 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b0bc350 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b0dc360 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b0fc370 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b11c380 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b13c390 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b15c3a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b17c3b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b19c3c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b1bc3d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b1dc3e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b1fc3f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b21c400 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b23c410 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b25c420 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b27c430 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b29c440 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b2bc450 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b2dc460 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b2fc470 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b31c480 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b33c490 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b35c4a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b37c4b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b39c4c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b3bc4d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b3dc4e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b3fc4f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b41c500 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b43c510 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b45c520 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b47c530 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b49c540 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b4bc550 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b4dc560 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b4fc570 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b51c580 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b53c590 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b55c5a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b57c5b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b59c5c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b5bc5d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b5dc5e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b5fc5f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b61c600 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b63c610 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b65c620 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b67c630 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b69c640 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b6bc650 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b6dc660 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b6fc670 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b71c680 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b73c690 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b75c6a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b77c6b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b79c6c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b7bc6d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b7dc6e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b7fc6f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b81c700 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b83c710 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b85c720 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b87c730 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b89c740 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b8bc750 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b8dc760 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b8fc770 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b91c780 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b93c790 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b95c7a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b97c7b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b99c7c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b9bc7d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b9dc7e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b9fc7f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ba1c800 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ba3c810 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ba5c820 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ba7c830 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ba9c840 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0babc850 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0badc860 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bafc870 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bb1c880 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bb3c890 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bb5c8a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bb7c8b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bb9c8c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bbbc8d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bbdc8e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bbfc8f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bc1c900 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bc3c910 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bc5c920 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bc7c930 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bc9c940 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bcbc950 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bcdc960 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bcfc970 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bd1c980 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bd3c990 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bd5c9a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bd7c9b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bd9c9c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bdbc9d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bddc9e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bdfc9f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0be1ca00 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0be3ca10 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0be5ca20 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0be7ca30 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0be9ca40 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bebca50 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bedca60 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0befca70 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bf1ca80 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bf3ca90 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bf5caa0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bf7cab0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bf9cac0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bfbcad0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bfdcae0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bffcaf0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c01cb00 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c03cb10 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c05cb20 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c07cb30 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c09cb40 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c0bcb50 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c0dcb60 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c0fcb70 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c11cb80 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c13cb90 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c15cba0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c17cbb0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c19cbc0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c1bcbd0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c1dcbe0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c1fcbf0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c21cc00 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c23cc10 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c25cc20 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c27cc30 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c29cc40 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c2bcc50 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c2dcc60 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c2fcc70 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c31cc80 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c33cc90 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c35cca0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c37ccb0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c39ccc0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c3bccd0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c3dcce0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c3fccf0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c41cd00 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c43cd10 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c45cd20 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c47cd30 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c49cd40 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c4bcd50 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c4dcd60 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c4fcd70 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c51cd80 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c53cd90 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c55cda0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c57cdb0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c59cdc0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c5bcdd0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c5dcde0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c5fcdf0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c61ce00 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c63ce10 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c65ce20 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c67ce30 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c69ce40 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c6bce50 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c6dce60 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c6fce70 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c71ce80 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c73ce90 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c75cea0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c77ceb0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c79cec0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c7bced0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c7dcee0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c7fcef0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c81cf00 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c83cf10 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c85cf20 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c87cf30 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c89cf40 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c8bcf50 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c8dcf60 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c8fcf70 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c91cf80 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c93cf90 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c95cfa0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c97cfb0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c99cfc0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c9bcfd0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c9dcfe0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c9fcff0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ca1d000 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ca3d010 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ca5d020 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ca7d030 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ca9d040 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0cabd050 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0cadd060 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0cafd070 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0cb1d080 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0cb3d090 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0cb5d0a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0cb7d0b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0cb9d0c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0cbbd0d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0cbdd0e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0cbfd0f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0cc1d100 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0cc3d110 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0cc5d120 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0cc7d130 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0cc9d140 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ccbd150 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ccdd160 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ccfd170 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0cd1d180 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0cd3d190 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb087c18b0 for tiles in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m211\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Computing short-range forces (using 8 tiles and 32 / 32 cores) done.\n",
"[02:24:50\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Acceleration loop, direction 0...\n",
"[02:24:50\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Acceleration loop, direction 0 done.\n",
"[02:24:50\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Kick loop, direction 0...\n",
"[02:24:50\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Kick loop, direction 0 done.\n",
"[02:24:50\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Acceleration loop, direction 1...\n",
"[02:24:50\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Acceleration loop, direction 1 done.\n",
"[02:24:50\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Kick loop, direction 1...\n",
"[02:24:50\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Kick loop, direction 1 done.\n",
"[02:24:50\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Acceleration loop, direction 2...\n",
"[02:24:50\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Acceleration loop, direction 2 done.\n",
"[02:24:50\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Kick loop, direction 2...\n",
"[02:24:50\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Kick loop, direction 2 done.\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08c1b190 for g_pad in \u001b[38;5;227mpmcola.c\u001b[0;36m:\u001b[38;5;192mkick_pm_cola\u001b[0;36m:\u001b[0;32m592\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08d1b1a0 for pp in \u001b[38;5;227mpmcola.c\u001b[0;36m:\u001b[38;5;192mkick_pm_cola\u001b[0;36m:\u001b[0;32m598\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]====|Kicking particles (using 32 cores) done.\n",
"[02:24:50\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]====|Drifting particles (using 32 cores)...\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mndrift=15\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mnkick=15\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246maiDrift=0.762500\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246maKick=0.786250\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mafDrift=0.810000\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246malpha_p=0.084855\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246malpha_lpt_1=0.000000\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246malpha_lpt_2=0.000000\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246malpha_ext=0.000000\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Drift loop, direction 0...\n",
"[02:24:50\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Drift loop, direction 0 done.\n",
"[02:24:50\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Drift loop, direction 1...\n",
"[02:24:50\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Drift loop, direction 1 done.\n",
"[02:24:50\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Drift loop, direction 2...\n",
"[02:24:50\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Drift loop, direction 2 done.\n",
"[02:24:50\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]====|Drifting particles (using 32 cores) done.\n",
"[02:24:50\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]==|ModuleP3M: End P3M step 16/20, time_kick:0.786250, time_drift=0.810000.\n",
"[02:24:50\u001b[00m|\u001b[38;5;159mTIMER \u001b[00m]==|Step 16/20: Density: 13.243 CPU - 0.449 wallclock seconds used.\n",
"[02:24:50\u001b[00m|\u001b[38;5;159mTIMER \u001b[00m]==|Step 16/20: Potential: 0.980 CPU - 0.044 wallclock seconds used.\n",
"[02:24:50\u001b[00m|\u001b[38;5;159mTIMER \u001b[00m]==|Step 16/20: Accelerations (long-range): 1.083 CPU - 0.038 wallclock seconds used.\n",
"[02:24:50\u001b[00m|\u001b[38;5;159mTIMER \u001b[00m]==|Step 16/20: Accelerations (short-range): 3.000 CPU - 0.239 wallclock seconds used.\n",
"[02:24:50\u001b[00m|\u001b[38;5;159mTIMER \u001b[00m]==|Step 16/20: Kick: 1.198 CPU - 0.039 wallclock seconds used.\n",
"[02:24:50\u001b[00m|\u001b[38;5;159mTIMER \u001b[00m]==|Step 16/20: Drift: 2.282 CPU - 0.074 wallclock seconds used.\n",
"[02:24:50\u001b[00m|\u001b[38;5;159mTIMER \u001b[00m]==|Step 16/20: Inputs: 0.000 CPU - 0.000 wallclock seconds used.\n",
"[02:24:50\u001b[00m|\u001b[38;5;159mTIMER \u001b[00m]==|Step 16/20: Diagnostic: 0.000 CPU - 0.000 wallclock seconds used.\n",
"[02:24:50\u001b[00m|\u001b[38;5;159mTIMER \u001b[00m]==|Step 16/20: Outputs: 0.000 CPU - 0.000 wallclock seconds used.\n",
"[02:24:50\u001b[00m|\u001b[38;5;159mTIMER \u001b[00m]==|Step 16/20: Total Evolution: 21.786 CPU - 0.882 wallclock seconds used.\n",
"[02:24:50\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]==|ModuleP3M: Begin P3M step 17/20, time_kick:0.786250, time_drift=0.810000.\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]====|\u001b[38;5;246mGiven the available memory, 4095 threads could be allocated and 32 threads will be used in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel\u001b[0;36m:\u001b[0;32m347\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]====|\u001b[38;5;246mGiven the available memory, 4095 threads could be allocated and 32 threads will be used in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m73\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]====|Getting density contrast (using 32 cores and 32 arrays, parallel routine 1)...\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]======|\u001b[38;5;246mPerforming CiC binning...\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 0...\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1488f8000b60 for threadedDensity[19] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148930000b60 for threadedDensity[14] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 19...\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 14...\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1488e0000b60 for threadedDensity[6] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148920000b60 for threadedDensity[12] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 6...\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 12...\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148960000b60 for threadedDensity[13] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148940000b60 for threadedDensity[27] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 13...\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 27...\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148900000b60 for threadedDensity[16] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148970000b60 for threadedDensity[7] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 16...\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 7...\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1488e8000b60 for threadedDensity[2] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148918000b60 for threadedDensity[15] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148938000b60 for threadedDensity[18] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148948000b60 for threadedDensity[31] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 18...\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 31...\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 2...\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148908000b60 for threadedDensity[8] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1488f0000b60 for threadedDensity[24] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148980000b60 for threadedDensity[11] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 24...\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 15...\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148950000b60 for threadedDensity[9] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 11...\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148978000b60 for threadedDensity[26] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148968000b60 for threadedDensity[10] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 26...\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148928000b60 for threadedDensity[20] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 10...\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1489b8000b60 for threadedDensity[4] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 20...\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 9...\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148998000b60 for threadedDensity[25] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148910000b60 for threadedDensity[23] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 25...\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 23...\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1488dc000b60 for threadedDensity[17] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 8...\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 17...\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1488d8000b60 for threadedDensity[29] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1488d0000b60 for threadedDensity[5] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 29...\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 5...\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148988000b60 for threadedDensity[28] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1489b0000b60 for threadedDensity[1] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1489a0000b60 for threadedDensity[3] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 1...\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 3...\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 4...\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 28...\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148958000b60 for threadedDensity[22] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 22...\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1489a8000b60 for threadedDensity[30] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 30...\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148990000b60 for threadedDensity[21] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 21...\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 22 done.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 21 done.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 26 done.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 2 done.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 16 done.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 7 done.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 18 done.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 31 done.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 24 done.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 11 done.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 9 done.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 15 done.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 10 done.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 14 done.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 20 done.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 23 done.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 25 done.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 17 done.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 19 done.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 29 done.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 5 done.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 0 done.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 4 done.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 1 done.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 3 done.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 12 done.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 6 done.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 27 done.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 13 done.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 8 done.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 30 done.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 28 done.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]======|\u001b[38;5;246mPerforming CiC done.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]======|\u001b[38;5;246mPerforming CiC reduction...\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x1489b0000b60 for threadedDensity[1] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x1488e8000b60 for threadedDensity[2] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x1489a0000b60 for threadedDensity[3] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x1489b8000b60 for threadedDensity[4] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x1488d0000b60 for threadedDensity[5] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x1488e0000b60 for threadedDensity[6] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148970000b60 for threadedDensity[7] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148908000b60 for threadedDensity[8] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148950000b60 for threadedDensity[9] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148968000b60 for threadedDensity[10] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148980000b60 for threadedDensity[11] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148920000b60 for threadedDensity[12] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148960000b60 for threadedDensity[13] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148930000b60 for threadedDensity[14] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148918000b60 for threadedDensity[15] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148900000b60 for threadedDensity[16] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x1488dc000b60 for threadedDensity[17] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148938000b60 for threadedDensity[18] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x1488f8000b60 for threadedDensity[19] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148928000b60 for threadedDensity[20] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148990000b60 for threadedDensity[21] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148958000b60 for threadedDensity[22] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148910000b60 for threadedDensity[23] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x1488f0000b60 for threadedDensity[24] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148998000b60 for threadedDensity[25] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148978000b60 for threadedDensity[26] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148940000b60 for threadedDensity[27] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148988000b60 for threadedDensity[28] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x1488d8000b60 for threadedDensity[29] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x1489a8000b60 for threadedDensity[30] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148948000b60 for threadedDensity[31] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]======|\u001b[38;5;246mPerforming CiC reduction done.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]====|Getting density contrast (using 32 cores and 32 arrays, parallel routine 1) done.\n",
"[02:24:50\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]====|Getting gravitational potential, periodic boundary conditions (using 32 cores)...\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated memory (1081344 bytes) at 0x55cb08c1b190 for AUX in \u001b[38;5;227mpoisson_solvers.c\u001b[0;36m:\u001b[38;5;192msolve_poisson_DFT\u001b[0;36m:\u001b[0;32m106\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08c1b190 for AUX in \u001b[38;5;227mpoisson_solvers.c\u001b[0;36m:\u001b[38;5;192msolve_poisson_DFT\u001b[0;36m:\u001b[0;32m116\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]====|Getting gravitational potential, periodic boundary conditions (using 32 cores) done.\n",
"[02:24:50\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]====|Kicking particles (using 32 cores)...\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mnkick=16\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mndrift=16\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246maiKick=0.786250\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246maDrift=0.810000\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mafKick=0.833750\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mbeta_delta=-0.029936\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mbeta_lpt_1=0.000000\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mbeta_lpt_2=0.000000\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mbeta_ext=0.000000\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated memory (1048576 bytes) at 0x55cb08c1b190 for g_pad in \u001b[38;5;227mpmcola.c\u001b[0;36m:\u001b[38;5;192mkick_pm_cola\u001b[0;36m:\u001b[0;32m478\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated memory (393216 bytes) at 0x55cb08d1b1a0 for pp in \u001b[38;5;227mpmcola.c\u001b[0;36m:\u001b[38;5;192mkick_pm_cola\u001b[0;36m:\u001b[0;32m554\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Computing short-range forces (using 8 tiles and 32 / 32 cores)...\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (8192 bytes) at 0x55cb087c52a0 for tiles in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m57\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb08635220 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb08d7b1b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb08d9b1c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb08dbb1d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb08ddb1e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb08dfb1f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb08e1b200 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb08e3b210 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb08e5b220 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb08e7b230 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb08e9b240 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb08ebb250 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb08edb260 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb08efb270 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb08f1b280 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb08f3b290 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb08f5b2a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb08f7b2b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb08f9b2c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb08fbb2d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb08fdb2e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb08ffb2f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0901b300 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0903b310 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0905b320 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0907b330 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0909b340 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb090bb350 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb090db360 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb090fb370 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0911b380 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0913b390 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0915b3a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0917b3b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0919b3c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb091bb3d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb091db3e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb091fb3f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0921b400 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0923b410 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0925b420 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0927b430 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0929b440 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb092bb450 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb092db460 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb092fb470 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0931b480 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0933b490 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0935b4a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0937b4b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0939b4c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb093bb4d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb093db4e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb093fb4f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0941b500 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0943b510 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0945b520 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0947b530 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0949b540 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb094bb550 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb094db560 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb094fb570 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0951b580 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0953b590 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0955b5a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0957b5b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0959b5c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb095bb5d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb095db5e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb095fb5f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0961b600 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0963b610 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0965b620 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0967b630 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0969b640 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb096bb650 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb096db660 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb096fb670 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0971b680 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0973b690 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0975b6a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0977b6b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0979b6c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb097bb6d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb097db6e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb097fb6f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0981b700 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0983b710 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0985b720 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0987b730 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0989b740 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb098bb750 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb098db760 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb098fb770 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0991b780 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0993b790 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0995b7a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0997b7b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0999b7c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb099bb7d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb099db7e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb099fb7f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09a1b800 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09a3b810 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09a5b820 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09a7b830 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09a9b840 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09abb850 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09adb860 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09afb870 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09b1b880 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09b3b890 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09b5b8a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09b7b8b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09b9b8c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09bbb8d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09bdb8e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09bfb8f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09c1b900 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09c3b910 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09c5b920 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09c7b930 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09c9b940 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09cbb950 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09cdb960 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09cfb970 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09d1b980 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09d3b990 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09d5b9a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09d7b9b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09d9b9c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09dbb9d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09ddb9e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09dfb9f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09e1ba00 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09e3ba10 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09e5ba20 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09e7ba30 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09e9ba40 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09ebba50 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09edba60 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09efba70 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09f1ba80 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09f3ba90 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09f5baa0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09f7bab0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09f9bac0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09fbbad0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09fdbae0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09ffbaf0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a01bb00 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a03bb10 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a05bb20 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a07bb30 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a09bb40 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a0bbb50 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a0dbb60 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a0fbb70 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a11bb80 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a13bb90 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a15bba0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a17bbb0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a19bbc0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a1bbbd0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a1dbbe0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a1fbbf0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a21bc00 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a23bc10 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a25bc20 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a27bc30 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a29bc40 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a2bbc50 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a2dbc60 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a2fbc70 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a31bc80 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a33bc90 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a35bca0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a37bcb0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a39bcc0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a3bbcd0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a3dbce0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a3fbcf0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a41bd00 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a43bd10 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a45bd20 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a47bd30 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a49bd40 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a4bbd50 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a4dbd60 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a4fbd70 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a51bd80 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a53bd90 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a55bda0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a57bdb0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a59bdc0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a5bbdd0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a5dbde0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a5fbdf0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a61be00 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a63be10 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a65be20 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a67be30 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a69be40 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a6bbe50 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a6dbe60 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a6fbe70 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a71be80 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a73be90 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a75bea0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a77beb0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a79bec0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a7bbed0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a7dbee0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a7fbef0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a81bf00 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a83bf10 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a85bf20 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a87bf30 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a89bf40 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a8bbf50 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a8dbf60 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a8fbf70 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a91bf80 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a93bf90 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a95bfa0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a97bfb0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a99bfc0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a9bbfd0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a9dbfe0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a9fbff0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0aa1c000 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0aa3c010 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0aa5c020 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0aa7c030 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0aa9c040 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0aabc050 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0aadc060 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0aafc070 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ab1c080 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ab3c090 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ab5c0a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ab7c0b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ab9c0c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0abbc0d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0abdc0e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0abfc0f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ac1c100 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ac3c110 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ac5c120 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ac7c130 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ac9c140 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0acbc150 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0acdc160 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0acfc170 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ad1c180 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ad3c190 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ad5c1a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ad7c1b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ad9c1c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0adbc1d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0addc1e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0adfc1f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ae1c200 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ae3c210 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ae5c220 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ae7c230 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ae9c240 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0aebc250 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0aedc260 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0aefc270 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0af1c280 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0af3c290 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0af5c2a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0af7c2b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0af9c2c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0afbc2d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0afdc2e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0affc2f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b01c300 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b03c310 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b05c320 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b07c330 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b09c340 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b0bc350 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b0dc360 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b0fc370 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b11c380 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b13c390 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b15c3a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b17c3b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b19c3c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b1bc3d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b1dc3e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b1fc3f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b21c400 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b23c410 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b25c420 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b27c430 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b29c440 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b2bc450 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b2dc460 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b2fc470 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b31c480 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b33c490 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b35c4a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b37c4b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b39c4c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b3bc4d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b3dc4e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b3fc4f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b41c500 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b43c510 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b45c520 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b47c530 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b49c540 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b4bc550 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b4dc560 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b4fc570 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b51c580 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b53c590 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b55c5a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b57c5b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b59c5c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b5bc5d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b5dc5e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b5fc5f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b61c600 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b63c610 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b65c620 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b67c630 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b69c640 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b6bc650 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b6dc660 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b6fc670 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b71c680 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b73c690 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b75c6a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b77c6b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b79c6c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b7bc6d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b7dc6e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b7fc6f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b81c700 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b83c710 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b85c720 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b87c730 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b89c740 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b8bc750 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b8dc760 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b8fc770 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b91c780 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b93c790 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b95c7a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b97c7b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b99c7c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b9bc7d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b9dc7e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b9fc7f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ba1c800 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ba3c810 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ba5c820 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ba7c830 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ba9c840 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0babc850 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0badc860 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bafc870 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bb1c880 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bb3c890 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bb5c8a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bb7c8b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bb9c8c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bbbc8d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bbdc8e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bbfc8f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bc1c900 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bc3c910 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bc5c920 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bc7c930 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bc9c940 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bcbc950 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bcdc960 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bcfc970 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bd1c980 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bd3c990 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bd5c9a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bd7c9b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bd9c9c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bdbc9d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bddc9e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bdfc9f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0be1ca00 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0be3ca10 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0be5ca20 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0be7ca30 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0be9ca40 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bebca50 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bedca60 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0befca70 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bf1ca80 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bf3ca90 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bf5caa0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bf7cab0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bf9cac0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bfbcad0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bfdcae0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bffcaf0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c01cb00 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c03cb10 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c05cb20 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c07cb30 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c09cb40 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c0bcb50 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c0dcb60 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c0fcb70 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c11cb80 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c13cb90 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c15cba0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c17cbb0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c19cbc0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c1bcbd0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c1dcbe0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c1fcbf0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c21cc00 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c23cc10 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c25cc20 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c27cc30 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c29cc40 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c2bcc50 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c2dcc60 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c2fcc70 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c31cc80 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c33cc90 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c35cca0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c37ccb0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c39ccc0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c3bccd0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c3dcce0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c3fccf0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c41cd00 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c43cd10 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c45cd20 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c47cd30 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c49cd40 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c4bcd50 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c4dcd60 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c4fcd70 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c51cd80 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c53cd90 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c55cda0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c57cdb0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c59cdc0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c5bcdd0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c5dcde0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c5fcdf0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c61ce00 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c63ce10 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c65ce20 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c67ce30 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c69ce40 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c6bce50 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c6dce60 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c6fce70 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c71ce80 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c73ce90 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c75cea0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c77ceb0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c79cec0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c7bced0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c7dcee0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c7fcef0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c81cf00 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c83cf10 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c85cf20 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c87cf30 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c89cf40 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c8bcf50 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c8dcf60 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c8fcf70 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c91cf80 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c93cf90 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c95cfa0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c97cfb0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c99cfc0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c9bcfd0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c9dcfe0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c9fcff0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ca1d000 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ca3d010 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ca5d020 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ca7d030 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ca9d040 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0cabd050 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0cadd060 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0cafd070 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0cb1d080 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0cb3d090 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0cb5d0a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0cb7d0b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0cb9d0c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0cbbd0d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0cbdd0e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0cbfd0f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0cc1d100 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0cc3d110 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0cc5d120 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0cc7d130 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0cc9d140 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ccbd150 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ccdd160 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ccfd170 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0cd1d180 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0cd3d190 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08635220 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08d7b1b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08d9b1c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08dbb1d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08ddb1e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08dfb1f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08e1b200 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08e3b210 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08e5b220 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08e7b230 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08e9b240 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08ebb250 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08edb260 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08efb270 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08f1b280 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08f3b290 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08f5b2a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08f7b2b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08f9b2c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08fbb2d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08fdb2e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08ffb2f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0901b300 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0903b310 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0905b320 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0907b330 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0909b340 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb090bb350 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb090db360 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb090fb370 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0911b380 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0913b390 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0915b3a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0917b3b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0919b3c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb091bb3d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb091db3e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb091fb3f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0921b400 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0923b410 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0925b420 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0927b430 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0929b440 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb092bb450 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb092db460 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb092fb470 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0931b480 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0933b490 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0935b4a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0937b4b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0939b4c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb093bb4d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb093db4e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb093fb4f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0941b500 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0943b510 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0945b520 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0947b530 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0949b540 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb094bb550 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb094db560 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb094fb570 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0951b580 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0953b590 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0955b5a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0957b5b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0959b5c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb095bb5d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb095db5e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb095fb5f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0961b600 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0963b610 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0965b620 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0967b630 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0969b640 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb096bb650 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb096db660 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb096fb670 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0971b680 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0973b690 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0975b6a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0977b6b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0979b6c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb097bb6d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb097db6e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb097fb6f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0981b700 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0983b710 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0985b720 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0987b730 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0989b740 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb098bb750 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb098db760 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb098fb770 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0991b780 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0993b790 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0995b7a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0997b7b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0999b7c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb099bb7d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb099db7e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb099fb7f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09a1b800 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09a3b810 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09a5b820 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09a7b830 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09a9b840 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09abb850 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09adb860 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09afb870 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09b1b880 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09b3b890 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09b5b8a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09b7b8b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09b9b8c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09bbb8d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09bdb8e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09bfb8f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09c1b900 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09c3b910 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09c5b920 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09c7b930 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09c9b940 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09cbb950 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09cdb960 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09cfb970 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09d1b980 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09d3b990 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09d5b9a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09d7b9b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09d9b9c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09dbb9d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09ddb9e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09dfb9f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09e1ba00 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09e3ba10 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09e5ba20 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09e7ba30 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09e9ba40 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09ebba50 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09edba60 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09efba70 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09f1ba80 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09f3ba90 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09f5baa0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09f7bab0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09f9bac0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09fbbad0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09fdbae0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09ffbaf0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a01bb00 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a03bb10 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a05bb20 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a07bb30 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a09bb40 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a0bbb50 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a0dbb60 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a0fbb70 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a11bb80 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a13bb90 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a15bba0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a17bbb0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a19bbc0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a1bbbd0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a1dbbe0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a1fbbf0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a21bc00 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a23bc10 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a25bc20 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a27bc30 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a29bc40 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a2bbc50 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a2dbc60 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a2fbc70 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a31bc80 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a33bc90 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a35bca0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a37bcb0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a39bcc0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a3bbcd0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a3dbce0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a3fbcf0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a41bd00 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a43bd10 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a45bd20 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a47bd30 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a49bd40 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a4bbd50 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a4dbd60 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a4fbd70 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a51bd80 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a53bd90 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a55bda0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a57bdb0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a59bdc0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a5bbdd0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a5dbde0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a5fbdf0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a61be00 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a63be10 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a65be20 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a67be30 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a69be40 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a6bbe50 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a6dbe60 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a6fbe70 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a71be80 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a73be90 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a75bea0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a77beb0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a79bec0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a7bbed0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a7dbee0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a7fbef0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a81bf00 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a83bf10 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a85bf20 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a87bf30 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a89bf40 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a8bbf50 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a8dbf60 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a8fbf70 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a91bf80 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a93bf90 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a95bfa0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a97bfb0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a99bfc0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a9bbfd0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a9dbfe0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a9fbff0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0aa1c000 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0aa3c010 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0aa5c020 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0aa7c030 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0aa9c040 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0aabc050 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0aadc060 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0aafc070 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ab1c080 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ab3c090 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ab5c0a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ab7c0b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ab9c0c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0abbc0d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0abdc0e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0abfc0f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ac1c100 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ac3c110 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ac5c120 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ac7c130 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ac9c140 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0acbc150 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0acdc160 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0acfc170 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ad1c180 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ad3c190 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ad5c1a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ad7c1b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ad9c1c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0adbc1d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0addc1e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0adfc1f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ae1c200 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ae3c210 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ae5c220 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ae7c230 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ae9c240 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0aebc250 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0aedc260 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0aefc270 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0af1c280 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0af3c290 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0af5c2a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0af7c2b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0af9c2c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0afbc2d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0afdc2e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0affc2f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b01c300 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b03c310 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b05c320 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b07c330 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b09c340 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b0bc350 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b0dc360 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b0fc370 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b11c380 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b13c390 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b15c3a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b17c3b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b19c3c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b1bc3d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b1dc3e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b1fc3f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b21c400 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b23c410 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b25c420 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b27c430 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b29c440 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b2bc450 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b2dc460 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b2fc470 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b31c480 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b33c490 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b35c4a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b37c4b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b39c4c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b3bc4d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b3dc4e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b3fc4f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b41c500 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b43c510 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b45c520 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b47c530 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b49c540 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b4bc550 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b4dc560 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b4fc570 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b51c580 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b53c590 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b55c5a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b57c5b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b59c5c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b5bc5d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b5dc5e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b5fc5f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b61c600 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b63c610 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b65c620 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b67c630 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b69c640 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b6bc650 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b6dc660 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b6fc670 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b71c680 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b73c690 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b75c6a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b77c6b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b79c6c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b7bc6d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b7dc6e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b7fc6f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b81c700 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b83c710 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b85c720 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b87c730 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b89c740 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b8bc750 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b8dc760 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b8fc770 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b91c780 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b93c790 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b95c7a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b97c7b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b99c7c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b9bc7d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b9dc7e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b9fc7f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ba1c800 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ba3c810 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ba5c820 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ba7c830 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ba9c840 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0babc850 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0badc860 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bafc870 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bb1c880 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bb3c890 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bb5c8a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bb7c8b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bb9c8c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bbbc8d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bbdc8e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bbfc8f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bc1c900 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bc3c910 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bc5c920 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bc7c930 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bc9c940 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bcbc950 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bcdc960 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bcfc970 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bd1c980 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bd3c990 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bd5c9a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bd7c9b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bd9c9c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bdbc9d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bddc9e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bdfc9f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0be1ca00 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0be3ca10 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0be5ca20 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0be7ca30 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0be9ca40 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bebca50 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bedca60 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0befca70 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bf1ca80 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bf3ca90 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bf5caa0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bf7cab0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bf9cac0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bfbcad0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bfdcae0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bffcaf0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c01cb00 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c03cb10 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c05cb20 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c07cb30 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c09cb40 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c0bcb50 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c0dcb60 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c0fcb70 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c11cb80 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c13cb90 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c15cba0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c17cbb0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c19cbc0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c1bcbd0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c1dcbe0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c1fcbf0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c21cc00 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c23cc10 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c25cc20 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c27cc30 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c29cc40 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c2bcc50 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c2dcc60 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c2fcc70 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c31cc80 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c33cc90 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c35cca0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c37ccb0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c39ccc0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c3bccd0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c3dcce0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c3fccf0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c41cd00 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c43cd10 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c45cd20 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c47cd30 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c49cd40 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c4bcd50 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c4dcd60 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c4fcd70 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c51cd80 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c53cd90 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c55cda0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c57cdb0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c59cdc0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c5bcdd0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c5dcde0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c5fcdf0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c61ce00 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c63ce10 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c65ce20 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c67ce30 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c69ce40 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c6bce50 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c6dce60 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c6fce70 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c71ce80 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c73ce90 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c75cea0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c77ceb0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c79cec0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c7bced0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c7dcee0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c7fcef0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c81cf00 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c83cf10 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c85cf20 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c87cf30 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c89cf40 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c8bcf50 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c8dcf60 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c8fcf70 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c91cf80 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c93cf90 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c95cfa0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c97cfb0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c99cfc0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c9bcfd0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c9dcfe0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c9fcff0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ca1d000 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ca3d010 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ca5d020 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ca7d030 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ca9d040 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0cabd050 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0cadd060 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0cafd070 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0cb1d080 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0cb3d090 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0cb5d0a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0cb7d0b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0cb9d0c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0cbbd0d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0cbdd0e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0cbfd0f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0cc1d100 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0cc3d110 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0cc5d120 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0cc7d130 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0cc9d140 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ccbd150 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ccdd160 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ccfd170 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0cd1d180 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0cd3d190 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb087c52a0 for tiles in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m211\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Computing short-range forces (using 8 tiles and 32 / 32 cores) done.\n",
"[02:24:50\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Acceleration loop, direction 0...\n",
"[02:24:50\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Acceleration loop, direction 0 done.\n",
"[02:24:50\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Kick loop, direction 0...\n",
"[02:24:50\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Kick loop, direction 0 done.\n",
"[02:24:50\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Acceleration loop, direction 1...\n",
"[02:24:50\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Acceleration loop, direction 1 done.\n",
"[02:24:50\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Kick loop, direction 1...\n",
"[02:24:50\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Kick loop, direction 1 done.\n",
"[02:24:50\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Acceleration loop, direction 2...\n",
"[02:24:50\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Acceleration loop, direction 2 done.\n",
"[02:24:50\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Kick loop, direction 2...\n",
"[02:24:50\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Kick loop, direction 2 done.\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08c1b190 for g_pad in \u001b[38;5;227mpmcola.c\u001b[0;36m:\u001b[38;5;192mkick_pm_cola\u001b[0;36m:\u001b[0;32m592\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08d1b1a0 for pp in \u001b[38;5;227mpmcola.c\u001b[0;36m:\u001b[38;5;192mkick_pm_cola\u001b[0;36m:\u001b[0;32m598\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]====|Kicking particles (using 32 cores) done.\n",
"[02:24:50\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]====|Drifting particles (using 32 cores)...\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mndrift=16\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mnkick=16\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246maiDrift=0.810000\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246maKick=0.833750\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mafDrift=0.857500\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246malpha_p=0.074096\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246malpha_lpt_1=0.000000\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246malpha_lpt_2=0.000000\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246malpha_ext=0.000000\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Drift loop, direction 0...\n",
"[02:24:50\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Drift loop, direction 0 done.\n",
"[02:24:50\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Drift loop, direction 1...\n",
"[02:24:50\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Drift loop, direction 1 done.\n",
"[02:24:50\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Drift loop, direction 2...\n",
"[02:24:50\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Drift loop, direction 2 done.\n",
"[02:24:50\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]====|Drifting particles (using 32 cores) done.\n",
"[02:24:50\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]==|ModuleP3M: End P3M step 17/20, time_kick:0.833750, time_drift=0.857500.\n",
"[02:24:50\u001b[00m|\u001b[38;5;159mTIMER \u001b[00m]==|Step 17/20: Density: 6.913 CPU - 0.225 wallclock seconds used.\n",
"[02:24:50\u001b[00m|\u001b[38;5;159mTIMER \u001b[00m]==|Step 17/20: Potential: 0.621 CPU - 0.023 wallclock seconds used.\n",
"[02:24:50\u001b[00m|\u001b[38;5;159mTIMER \u001b[00m]==|Step 17/20: Accelerations (long-range): 0.120 CPU - 0.004 wallclock seconds used.\n",
"[02:24:50\u001b[00m|\u001b[38;5;159mTIMER \u001b[00m]==|Step 17/20: Accelerations (short-range): 2.441 CPU - 0.205 wallclock seconds used.\n",
"[02:24:50\u001b[00m|\u001b[38;5;159mTIMER \u001b[00m]==|Step 17/20: Kick: 0.032 CPU - 0.001 wallclock seconds used.\n",
"[02:24:50\u001b[00m|\u001b[38;5;159mTIMER \u001b[00m]==|Step 17/20: Drift: 0.032 CPU - 0.000 wallclock seconds used.\n",
"[02:24:50\u001b[00m|\u001b[38;5;159mTIMER \u001b[00m]==|Step 17/20: Inputs: 0.000 CPU - 0.000 wallclock seconds used.\n",
"[02:24:50\u001b[00m|\u001b[38;5;159mTIMER \u001b[00m]==|Step 17/20: Diagnostic: 0.000 CPU - 0.000 wallclock seconds used.\n",
"[02:24:50\u001b[00m|\u001b[38;5;159mTIMER \u001b[00m]==|Step 17/20: Outputs: 0.000 CPU - 0.000 wallclock seconds used.\n",
"[02:24:50\u001b[00m|\u001b[38;5;159mTIMER \u001b[00m]==|Step 17/20: Total Evolution: 10.158 CPU - 0.459 wallclock seconds used.\n",
"[02:24:50\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]==|ModuleP3M: Begin P3M step 18/20, time_kick:0.833750, time_drift=0.857500.\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]====|\u001b[38;5;246mGiven the available memory, 4095 threads could be allocated and 32 threads will be used in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel\u001b[0;36m:\u001b[0;32m347\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]====|\u001b[38;5;246mGiven the available memory, 4095 threads could be allocated and 32 threads will be used in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m73\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]====|Getting density contrast (using 32 cores and 32 arrays, parallel routine 1)...\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]======|\u001b[38;5;246mPerforming CiC binning...\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 0...\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148988000b60 for threadedDensity[28] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148990000b60 for threadedDensity[21] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 28...\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 21...\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1488e0000b60 for threadedDensity[6] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148920000b60 for threadedDensity[12] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 6...\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 12...\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148900000b60 for threadedDensity[16] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148970000b60 for threadedDensity[7] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 16...\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 7...\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148938000b60 for threadedDensity[18] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1488f0000b60 for threadedDensity[24] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148978000b60 for threadedDensity[26] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 26...\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1488e8000b60 for threadedDensity[2] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 24...\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 2...\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 18...\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148948000b60 for threadedDensity[31] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148918000b60 for threadedDensity[15] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148950000b60 for threadedDensity[9] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 15...\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 9...\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 31...\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148930000b60 for threadedDensity[14] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148928000b60 for threadedDensity[20] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 14...\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 20...\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148910000b60 for threadedDensity[23] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148998000b60 for threadedDensity[25] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 23...\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 25...\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148968000b60 for threadedDensity[10] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148958000b60 for threadedDensity[22] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 10...\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 22...\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1488f8000b60 for threadedDensity[19] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1488dc000b60 for threadedDensity[17] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 19...\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 17...\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1489b8000b60 for threadedDensity[4] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1488d8000b60 for threadedDensity[29] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1488d0000b60 for threadedDensity[5] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 29...\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 5...\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 4...\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1489a0000b60 for threadedDensity[3] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1489b0000b60 for threadedDensity[1] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 3...\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 1...\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148960000b60 for threadedDensity[13] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148908000b60 for threadedDensity[8] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 13...\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 8...\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1489a8000b60 for threadedDensity[30] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 30...\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148940000b60 for threadedDensity[27] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 27...\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148980000b60 for threadedDensity[11] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 11...\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 30 done.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 7 done.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 16 done.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 26 done.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 2 done.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 18 done.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 31 done.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 11 done.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 9 done.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 15 done.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 14 done.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 20 done.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 10 done.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 22 done.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 25 done.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 23 done.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 12 done.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 6 done.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 29 done.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 5 done.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 19 done.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 17 done.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 21 done.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 28 done.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 1 done.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 3 done.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 0 done.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 4 done.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 8 done.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 27 done.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 13 done.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 24 done.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]======|\u001b[38;5;246mPerforming CiC done.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]======|\u001b[38;5;246mPerforming CiC reduction...\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x1489b0000b60 for threadedDensity[1] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x1488e8000b60 for threadedDensity[2] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x1489a0000b60 for threadedDensity[3] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x1489b8000b60 for threadedDensity[4] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x1488d0000b60 for threadedDensity[5] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x1488e0000b60 for threadedDensity[6] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148970000b60 for threadedDensity[7] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148908000b60 for threadedDensity[8] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148950000b60 for threadedDensity[9] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148968000b60 for threadedDensity[10] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148980000b60 for threadedDensity[11] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148920000b60 for threadedDensity[12] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148960000b60 for threadedDensity[13] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148930000b60 for threadedDensity[14] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148918000b60 for threadedDensity[15] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148900000b60 for threadedDensity[16] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x1488dc000b60 for threadedDensity[17] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148938000b60 for threadedDensity[18] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x1488f8000b60 for threadedDensity[19] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148928000b60 for threadedDensity[20] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148990000b60 for threadedDensity[21] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148958000b60 for threadedDensity[22] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148910000b60 for threadedDensity[23] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x1488f0000b60 for threadedDensity[24] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148998000b60 for threadedDensity[25] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148978000b60 for threadedDensity[26] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148940000b60 for threadedDensity[27] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148988000b60 for threadedDensity[28] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x1488d8000b60 for threadedDensity[29] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x1489a8000b60 for threadedDensity[30] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148948000b60 for threadedDensity[31] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]======|\u001b[38;5;246mPerforming CiC reduction done.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]====|Getting density contrast (using 32 cores and 32 arrays, parallel routine 1) done.\n",
"[02:24:50\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]====|Getting gravitational potential, periodic boundary conditions (using 32 cores)...\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated memory (1081344 bytes) at 0x55cb08c1b190 for AUX in \u001b[38;5;227mpoisson_solvers.c\u001b[0;36m:\u001b[38;5;192msolve_poisson_DFT\u001b[0;36m:\u001b[0;32m106\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08c1b190 for AUX in \u001b[38;5;227mpoisson_solvers.c\u001b[0;36m:\u001b[38;5;192msolve_poisson_DFT\u001b[0;36m:\u001b[0;32m116\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]====|Getting gravitational potential, periodic boundary conditions (using 32 cores) done.\n",
"[02:24:50\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]====|Kicking particles (using 32 cores)...\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mnkick=17\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mndrift=17\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246maiKick=0.833750\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246maDrift=0.857500\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mafKick=0.881250\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mbeta_delta=-0.027732\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mbeta_lpt_1=0.000000\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mbeta_lpt_2=0.000000\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mbeta_ext=0.000000\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated memory (1048576 bytes) at 0x55cb08c1b190 for g_pad in \u001b[38;5;227mpmcola.c\u001b[0;36m:\u001b[38;5;192mkick_pm_cola\u001b[0;36m:\u001b[0;32m478\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated memory (393216 bytes) at 0x55cb08d1b1a0 for pp in \u001b[38;5;227mpmcola.c\u001b[0;36m:\u001b[38;5;192mkick_pm_cola\u001b[0;36m:\u001b[0;32m554\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Computing short-range forces (using 8 tiles and 32 / 32 cores)...\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (8192 bytes) at 0x55cb08828490 for tiles in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m57\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb08635220 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb08d7b1b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb08d9b1c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb08dbb1d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb08ddb1e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb08dfb1f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb08e1b200 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb08e3b210 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb08e5b220 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb08e7b230 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb08e9b240 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb08ebb250 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb08edb260 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb08efb270 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb08f1b280 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb08f3b290 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb08f5b2a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb08f7b2b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb08f9b2c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb08fbb2d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb08fdb2e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb08ffb2f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0901b300 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0903b310 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0905b320 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0907b330 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0909b340 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb090bb350 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb090db360 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb090fb370 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0911b380 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0913b390 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0915b3a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0917b3b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0919b3c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb091bb3d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb091db3e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb091fb3f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0921b400 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0923b410 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0925b420 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0927b430 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0929b440 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb092bb450 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb092db460 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb092fb470 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0931b480 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0933b490 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0935b4a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0937b4b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:50\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0939b4c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb093bb4d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb093db4e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb093fb4f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0941b500 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0943b510 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0945b520 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0947b530 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0949b540 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb094bb550 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb094db560 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb094fb570 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0951b580 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0953b590 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0955b5a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0957b5b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0959b5c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb095bb5d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb095db5e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb095fb5f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0961b600 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0963b610 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0965b620 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0967b630 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0969b640 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb096bb650 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb096db660 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb096fb670 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0971b680 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0973b690 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0975b6a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0977b6b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0979b6c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb097bb6d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb097db6e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb097fb6f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0981b700 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0983b710 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0985b720 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0987b730 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0989b740 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb098bb750 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb098db760 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb098fb770 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0991b780 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0993b790 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0995b7a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0997b7b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0999b7c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb099bb7d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb099db7e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb099fb7f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09a1b800 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09a3b810 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09a5b820 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09a7b830 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09a9b840 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09abb850 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09adb860 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09afb870 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09b1b880 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09b3b890 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09b5b8a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09b7b8b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09b9b8c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09bbb8d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09bdb8e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09bfb8f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09c1b900 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09c3b910 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09c5b920 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09c7b930 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09c9b940 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09cbb950 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09cdb960 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09cfb970 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09d1b980 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09d3b990 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09d5b9a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09d7b9b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09d9b9c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09dbb9d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09ddb9e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09dfb9f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09e1ba00 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09e3ba10 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09e5ba20 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09e7ba30 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09e9ba40 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09ebba50 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09edba60 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09efba70 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09f1ba80 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09f3ba90 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09f5baa0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09f7bab0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09f9bac0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09fbbad0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09fdbae0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09ffbaf0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a01bb00 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a03bb10 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a05bb20 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a07bb30 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a09bb40 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a0bbb50 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a0dbb60 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a0fbb70 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a11bb80 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a13bb90 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a15bba0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a17bbb0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a19bbc0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a1bbbd0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a1dbbe0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a1fbbf0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a21bc00 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a23bc10 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a25bc20 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a27bc30 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a29bc40 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a2bbc50 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a2dbc60 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a2fbc70 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a31bc80 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a33bc90 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a35bca0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a37bcb0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a39bcc0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a3bbcd0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a3dbce0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a3fbcf0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a41bd00 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a43bd10 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a45bd20 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a47bd30 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a49bd40 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a4bbd50 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a4dbd60 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a4fbd70 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a51bd80 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a53bd90 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a55bda0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a57bdb0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a59bdc0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a5bbdd0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a5dbde0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a5fbdf0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a61be00 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a63be10 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a65be20 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a67be30 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a69be40 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a6bbe50 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a6dbe60 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a6fbe70 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a71be80 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a73be90 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a75bea0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a77beb0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a79bec0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a7bbed0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a7dbee0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a7fbef0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a81bf00 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a83bf10 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a85bf20 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a87bf30 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a89bf40 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a8bbf50 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a8dbf60 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a8fbf70 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a91bf80 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a93bf90 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a95bfa0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a97bfb0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a99bfc0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a9bbfd0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a9dbfe0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a9fbff0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0aa1c000 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0aa3c010 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0aa5c020 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0aa7c030 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0aa9c040 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0aabc050 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0aadc060 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0aafc070 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ab1c080 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ab3c090 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ab5c0a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ab7c0b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ab9c0c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0abbc0d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0abdc0e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0abfc0f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ac1c100 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ac3c110 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ac5c120 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ac7c130 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ac9c140 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0acbc150 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0acdc160 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0acfc170 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ad1c180 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ad3c190 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ad5c1a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ad7c1b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ad9c1c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0adbc1d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0addc1e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0adfc1f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ae1c200 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ae3c210 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ae5c220 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ae7c230 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ae9c240 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0aebc250 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0aedc260 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0aefc270 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0af1c280 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0af3c290 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0af5c2a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0af7c2b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0af9c2c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0afbc2d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0afdc2e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0affc2f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b01c300 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b03c310 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b05c320 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b07c330 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b09c340 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b0bc350 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b0dc360 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b0fc370 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b11c380 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b13c390 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b15c3a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b17c3b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b19c3c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b1bc3d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b1dc3e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b1fc3f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b21c400 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b23c410 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b25c420 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b27c430 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b29c440 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b2bc450 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b2dc460 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b2fc470 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b31c480 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b33c490 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b35c4a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b37c4b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b39c4c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b3bc4d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b3dc4e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b3fc4f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b41c500 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b43c510 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b45c520 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b47c530 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b49c540 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b4bc550 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b4dc560 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b4fc570 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b51c580 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b53c590 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b55c5a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b57c5b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b59c5c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b5bc5d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b5dc5e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b5fc5f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b61c600 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b63c610 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b65c620 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b67c630 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b69c640 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b6bc650 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b6dc660 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b6fc670 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b71c680 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b73c690 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b75c6a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b77c6b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b79c6c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b7bc6d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b7dc6e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b7fc6f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b81c700 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b83c710 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b85c720 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b87c730 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b89c740 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b8bc750 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b8dc760 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b8fc770 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b91c780 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b93c790 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b95c7a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b97c7b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b99c7c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b9bc7d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b9dc7e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b9fc7f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ba1c800 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ba3c810 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ba5c820 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ba7c830 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ba9c840 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0babc850 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0badc860 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bafc870 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bb1c880 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bb3c890 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bb5c8a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bb7c8b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bb9c8c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bbbc8d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bbdc8e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bbfc8f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bc1c900 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bc3c910 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bc5c920 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bc7c930 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bc9c940 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bcbc950 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bcdc960 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bcfc970 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bd1c980 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bd3c990 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bd5c9a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bd7c9b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bd9c9c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bdbc9d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bddc9e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bdfc9f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0be1ca00 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0be3ca10 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0be5ca20 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0be7ca30 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0be9ca40 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bebca50 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bedca60 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0befca70 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bf1ca80 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bf3ca90 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bf5caa0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bf7cab0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bf9cac0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bfbcad0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bfdcae0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bffcaf0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c01cb00 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c03cb10 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c05cb20 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c07cb30 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c09cb40 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c0bcb50 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c0dcb60 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c0fcb70 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c11cb80 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c13cb90 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c15cba0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c17cbb0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c19cbc0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c1bcbd0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c1dcbe0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c1fcbf0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c21cc00 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c23cc10 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c25cc20 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c27cc30 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c29cc40 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c2bcc50 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c2dcc60 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c2fcc70 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c31cc80 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c33cc90 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c35cca0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c37ccb0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c39ccc0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c3bccd0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c3dcce0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c3fccf0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c41cd00 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c43cd10 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c45cd20 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c47cd30 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c49cd40 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c4bcd50 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c4dcd60 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c4fcd70 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c51cd80 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c53cd90 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c55cda0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c57cdb0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c59cdc0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c5bcdd0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c5dcde0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c5fcdf0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c61ce00 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c63ce10 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c65ce20 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c67ce30 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c69ce40 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c6bce50 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c6dce60 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c6fce70 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c71ce80 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c73ce90 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c75cea0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c77ceb0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c79cec0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c7bced0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c7dcee0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c7fcef0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c81cf00 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c83cf10 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c85cf20 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c87cf30 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c89cf40 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c8bcf50 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c8dcf60 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c8fcf70 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c91cf80 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c93cf90 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c95cfa0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c97cfb0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c99cfc0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c9bcfd0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c9dcfe0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c9fcff0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ca1d000 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ca3d010 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ca5d020 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ca7d030 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ca9d040 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0cabd050 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0cadd060 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0cafd070 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0cb1d080 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0cb3d090 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0cb5d0a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0cb7d0b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0cb9d0c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0cbbd0d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0cbdd0e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0cbfd0f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0cc1d100 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0cc3d110 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0cc5d120 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0cc7d130 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0cc9d140 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ccbd150 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ccdd160 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ccfd170 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0cd1d180 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0cd3d190 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08635220 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08d7b1b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08d9b1c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08dbb1d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08ddb1e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08dfb1f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08e1b200 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08e3b210 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08e5b220 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08e7b230 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08e9b240 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08ebb250 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08edb260 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08efb270 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08f1b280 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08f3b290 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08f5b2a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08f7b2b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08f9b2c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08fbb2d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08fdb2e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08ffb2f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0901b300 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0903b310 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0905b320 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0907b330 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0909b340 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb090bb350 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb090db360 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb090fb370 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0911b380 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0913b390 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0915b3a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0917b3b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0919b3c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb091bb3d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb091db3e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb091fb3f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0921b400 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0923b410 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0925b420 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0927b430 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0929b440 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb092bb450 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb092db460 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb092fb470 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0931b480 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0933b490 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0935b4a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0937b4b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0939b4c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb093bb4d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb093db4e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb093fb4f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0941b500 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0943b510 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0945b520 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0947b530 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0949b540 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb094bb550 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb094db560 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb094fb570 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0951b580 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0953b590 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0955b5a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0957b5b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0959b5c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb095bb5d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb095db5e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb095fb5f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0961b600 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0963b610 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0965b620 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0967b630 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0969b640 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb096bb650 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb096db660 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb096fb670 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0971b680 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0973b690 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0975b6a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0977b6b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0979b6c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb097bb6d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb097db6e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb097fb6f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0981b700 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0983b710 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0985b720 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0987b730 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0989b740 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb098bb750 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb098db760 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb098fb770 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0991b780 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0993b790 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0995b7a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0997b7b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0999b7c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb099bb7d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb099db7e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb099fb7f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09a1b800 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09a3b810 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09a5b820 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09a7b830 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09a9b840 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09abb850 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09adb860 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09afb870 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09b1b880 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09b3b890 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09b5b8a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09b7b8b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09b9b8c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09bbb8d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09bdb8e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09bfb8f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09c1b900 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09c3b910 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09c5b920 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09c7b930 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09c9b940 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09cbb950 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09cdb960 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09cfb970 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09d1b980 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09d3b990 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09d5b9a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09d7b9b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09d9b9c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09dbb9d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09ddb9e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09dfb9f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09e1ba00 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09e3ba10 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09e5ba20 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09e7ba30 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09e9ba40 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09ebba50 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09edba60 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09efba70 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09f1ba80 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09f3ba90 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09f5baa0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09f7bab0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09f9bac0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09fbbad0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09fdbae0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09ffbaf0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a01bb00 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a03bb10 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a05bb20 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a07bb30 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a09bb40 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a0bbb50 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a0dbb60 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a0fbb70 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a11bb80 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a13bb90 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a15bba0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a17bbb0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a19bbc0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a1bbbd0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a1dbbe0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a1fbbf0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a21bc00 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a23bc10 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a25bc20 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a27bc30 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a29bc40 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a2bbc50 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a2dbc60 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a2fbc70 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a31bc80 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a33bc90 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a35bca0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a37bcb0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a39bcc0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a3bbcd0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a3dbce0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a3fbcf0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a41bd00 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a43bd10 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a45bd20 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a47bd30 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a49bd40 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a4bbd50 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a4dbd60 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a4fbd70 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a51bd80 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a53bd90 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a55bda0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a57bdb0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a59bdc0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a5bbdd0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a5dbde0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a5fbdf0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a61be00 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a63be10 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a65be20 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a67be30 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a69be40 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a6bbe50 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a6dbe60 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a6fbe70 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a71be80 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a73be90 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a75bea0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a77beb0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a79bec0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a7bbed0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a7dbee0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a7fbef0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a81bf00 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a83bf10 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a85bf20 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a87bf30 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a89bf40 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a8bbf50 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a8dbf60 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a8fbf70 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a91bf80 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a93bf90 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a95bfa0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a97bfb0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a99bfc0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a9bbfd0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a9dbfe0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a9fbff0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0aa1c000 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0aa3c010 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0aa5c020 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0aa7c030 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0aa9c040 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0aabc050 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0aadc060 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0aafc070 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ab1c080 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ab3c090 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ab5c0a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ab7c0b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ab9c0c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0abbc0d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0abdc0e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0abfc0f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ac1c100 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ac3c110 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ac5c120 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ac7c130 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ac9c140 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0acbc150 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0acdc160 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0acfc170 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ad1c180 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ad3c190 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ad5c1a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ad7c1b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ad9c1c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0adbc1d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0addc1e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0adfc1f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ae1c200 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ae3c210 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ae5c220 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ae7c230 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ae9c240 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0aebc250 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0aedc260 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0aefc270 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0af1c280 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0af3c290 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0af5c2a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0af7c2b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0af9c2c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0afbc2d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0afdc2e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0affc2f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b01c300 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b03c310 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b05c320 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b07c330 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b09c340 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b0bc350 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b0dc360 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b0fc370 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b11c380 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b13c390 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b15c3a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b17c3b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b19c3c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b1bc3d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b1dc3e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b1fc3f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b21c400 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b23c410 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b25c420 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b27c430 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b29c440 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b2bc450 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b2dc460 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b2fc470 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b31c480 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b33c490 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b35c4a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b37c4b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b39c4c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b3bc4d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b3dc4e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b3fc4f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b41c500 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b43c510 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b45c520 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b47c530 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b49c540 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b4bc550 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b4dc560 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b4fc570 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b51c580 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b53c590 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b55c5a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b57c5b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b59c5c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b5bc5d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b5dc5e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b5fc5f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b61c600 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b63c610 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b65c620 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b67c630 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b69c640 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b6bc650 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b6dc660 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b6fc670 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b71c680 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b73c690 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b75c6a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b77c6b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b79c6c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b7bc6d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b7dc6e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b7fc6f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b81c700 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b83c710 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b85c720 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b87c730 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b89c740 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b8bc750 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b8dc760 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b8fc770 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b91c780 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b93c790 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b95c7a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b97c7b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b99c7c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b9bc7d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b9dc7e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b9fc7f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ba1c800 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ba3c810 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ba5c820 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ba7c830 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ba9c840 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0babc850 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0badc860 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bafc870 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bb1c880 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bb3c890 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bb5c8a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bb7c8b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bb9c8c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bbbc8d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bbdc8e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bbfc8f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bc1c900 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bc3c910 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bc5c920 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bc7c930 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bc9c940 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bcbc950 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bcdc960 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bcfc970 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bd1c980 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bd3c990 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bd5c9a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bd7c9b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bd9c9c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bdbc9d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bddc9e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bdfc9f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0be1ca00 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0be3ca10 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0be5ca20 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0be7ca30 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0be9ca40 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bebca50 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bedca60 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0befca70 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bf1ca80 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bf3ca90 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bf5caa0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bf7cab0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bf9cac0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bfbcad0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bfdcae0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bffcaf0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c01cb00 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c03cb10 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c05cb20 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c07cb30 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c09cb40 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c0bcb50 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c0dcb60 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c0fcb70 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c11cb80 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c13cb90 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c15cba0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c17cbb0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c19cbc0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c1bcbd0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c1dcbe0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c1fcbf0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c21cc00 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c23cc10 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c25cc20 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c27cc30 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c29cc40 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c2bcc50 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c2dcc60 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c2fcc70 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c31cc80 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c33cc90 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c35cca0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c37ccb0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c39ccc0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c3bccd0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c3dcce0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c3fccf0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c41cd00 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c43cd10 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c45cd20 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c47cd30 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c49cd40 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c4bcd50 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c4dcd60 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c4fcd70 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c51cd80 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c53cd90 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c55cda0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c57cdb0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c59cdc0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c5bcdd0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c5dcde0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c5fcdf0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c61ce00 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c63ce10 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c65ce20 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c67ce30 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c69ce40 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c6bce50 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c6dce60 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c6fce70 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c71ce80 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c73ce90 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c75cea0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c77ceb0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c79cec0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c7bced0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c7dcee0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c7fcef0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c81cf00 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c83cf10 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c85cf20 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c87cf30 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c89cf40 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c8bcf50 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c8dcf60 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c8fcf70 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c91cf80 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c93cf90 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c95cfa0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c97cfb0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c99cfc0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c9bcfd0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c9dcfe0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c9fcff0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ca1d000 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ca3d010 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ca5d020 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ca7d030 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ca9d040 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0cabd050 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0cadd060 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0cafd070 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0cb1d080 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0cb3d090 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0cb5d0a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0cb7d0b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0cb9d0c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0cbbd0d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0cbdd0e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0cbfd0f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0cc1d100 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0cc3d110 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0cc5d120 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0cc7d130 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0cc9d140 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ccbd150 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ccdd160 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ccfd170 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0cd1d180 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0cd3d190 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08828490 for tiles in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m211\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Computing short-range forces (using 8 tiles and 32 / 32 cores) done.\n",
"[02:24:51\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Acceleration loop, direction 0...\n",
"[02:24:51\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Acceleration loop, direction 0 done.\n",
"[02:24:51\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Kick loop, direction 0...\n",
"[02:24:51\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Kick loop, direction 0 done.\n",
"[02:24:51\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Acceleration loop, direction 1...\n",
"[02:24:51\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Acceleration loop, direction 1 done.\n",
"[02:24:51\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Kick loop, direction 1...\n",
"[02:24:51\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Kick loop, direction 1 done.\n",
"[02:24:51\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Acceleration loop, direction 2...\n",
"[02:24:51\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Acceleration loop, direction 2 done.\n",
"[02:24:51\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Kick loop, direction 2...\n",
"[02:24:51\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Kick loop, direction 2 done.\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08c1b190 for g_pad in \u001b[38;5;227mpmcola.c\u001b[0;36m:\u001b[38;5;192mkick_pm_cola\u001b[0;36m:\u001b[0;32m592\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08d1b1a0 for pp in \u001b[38;5;227mpmcola.c\u001b[0;36m:\u001b[38;5;192mkick_pm_cola\u001b[0;36m:\u001b[0;32m598\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]====|Kicking particles (using 32 cores) done.\n",
"[02:24:51\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]====|Drifting particles (using 32 cores)...\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mndrift=17\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mnkick=17\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246maiDrift=0.857500\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246maKick=0.881250\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mafDrift=0.905000\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246malpha_p=0.064962\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246malpha_lpt_1=0.000000\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246malpha_lpt_2=0.000000\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246malpha_ext=0.000000\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Drift loop, direction 0...\n",
"[02:24:51\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Drift loop, direction 0 done.\n",
"[02:24:51\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Drift loop, direction 1...\n",
"[02:24:51\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Drift loop, direction 1 done.\n",
"[02:24:51\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Drift loop, direction 2...\n",
"[02:24:51\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Drift loop, direction 2 done.\n",
"[02:24:51\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]====|Drifting particles (using 32 cores) done.\n",
"[02:24:51\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]==|ModuleP3M: End P3M step 18/20, time_kick:0.881250, time_drift=0.905000.\n",
"[02:24:51\u001b[00m|\u001b[38;5;159mTIMER \u001b[00m]==|Step 18/20: Density: 8.725 CPU - 0.285 wallclock seconds used.\n",
"[02:24:51\u001b[00m|\u001b[38;5;159mTIMER \u001b[00m]==|Step 18/20: Potential: 0.518 CPU - 0.020 wallclock seconds used.\n",
"[02:24:51\u001b[00m|\u001b[38;5;159mTIMER \u001b[00m]==|Step 18/20: Accelerations (long-range): 0.131 CPU - 0.004 wallclock seconds used.\n",
"[02:24:51\u001b[00m|\u001b[38;5;159mTIMER \u001b[00m]==|Step 18/20: Accelerations (short-range): 2.334 CPU - 0.227 wallclock seconds used.\n",
"[02:24:51\u001b[00m|\u001b[38;5;159mTIMER \u001b[00m]==|Step 18/20: Kick: 0.032 CPU - 0.001 wallclock seconds used.\n",
"[02:24:51\u001b[00m|\u001b[38;5;159mTIMER \u001b[00m]==|Step 18/20: Drift: 0.000 CPU - 0.000 wallclock seconds used.\n",
"[02:24:51\u001b[00m|\u001b[38;5;159mTIMER \u001b[00m]==|Step 18/20: Inputs: 0.000 CPU - 0.000 wallclock seconds used.\n",
"[02:24:51\u001b[00m|\u001b[38;5;159mTIMER \u001b[00m]==|Step 18/20: Diagnostic: 0.000 CPU - 0.000 wallclock seconds used.\n",
"[02:24:51\u001b[00m|\u001b[38;5;159mTIMER \u001b[00m]==|Step 18/20: Outputs: 0.000 CPU - 0.000 wallclock seconds used.\n",
"[02:24:51\u001b[00m|\u001b[38;5;159mTIMER \u001b[00m]==|Step 18/20: Total Evolution: 11.739 CPU - 0.537 wallclock seconds used.\n",
"[02:24:51\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]==|ModuleP3M: Begin P3M step 19/20, time_kick:0.881250, time_drift=0.905000.\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]====|\u001b[38;5;246mGiven the available memory, 4095 threads could be allocated and 32 threads will be used in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel\u001b[0;36m:\u001b[0;32m347\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]====|\u001b[38;5;246mGiven the available memory, 4095 threads could be allocated and 32 threads will be used in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m73\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]====|Getting density contrast (using 32 cores and 32 arrays, parallel routine 1)...\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]======|\u001b[38;5;246mPerforming CiC binning...\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 0...\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1488dc000b60 for threadedDensity[17] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1488f8000b60 for threadedDensity[19] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 17...\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 19...\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148968000b60 for threadedDensity[10] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148990000b60 for threadedDensity[21] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148988000b60 for threadedDensity[28] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 21...\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 28...\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148928000b60 for threadedDensity[20] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148930000b60 for threadedDensity[14] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 20...\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 14...\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148970000b60 for threadedDensity[7] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148978000b60 for threadedDensity[26] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 7...\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 26...\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148980000b60 for threadedDensity[11] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148958000b60 for threadedDensity[22] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 11...\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 22...\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148998000b60 for threadedDensity[25] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1488e8000b60 for threadedDensity[2] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 25...\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 2...\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148938000b60 for threadedDensity[18] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148948000b60 for threadedDensity[31] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 18...\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 31...\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148950000b60 for threadedDensity[9] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148918000b60 for threadedDensity[15] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 9...\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 15...\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148900000b60 for threadedDensity[16] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 10...\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 16...\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1488d0000b60 for threadedDensity[5] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1488e0000b60 for threadedDensity[6] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148920000b60 for threadedDensity[12] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 6...\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 12...\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 5...\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1489b8000b60 for threadedDensity[4] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148910000b60 for threadedDensity[23] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1488d8000b60 for threadedDensity[29] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 23...\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 29...\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1489b0000b60 for threadedDensity[1] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1489a0000b60 for threadedDensity[3] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 1...\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 3...\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1489a8000b60 for threadedDensity[30] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148908000b60 for threadedDensity[8] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 30...\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 8...\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 4...\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148960000b60 for threadedDensity[13] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148940000b60 for threadedDensity[27] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 13...\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 27...\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1488f0000b60 for threadedDensity[24] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 24...\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 20 done.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 24 done.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 25 done.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 2 done.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 7 done.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 26 done.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 18 done.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 31 done.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 11 done.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 22 done.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 5 done.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 15 done.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 9 done.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 10 done.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 16 done.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 0 done.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 4 done.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 19 done.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 17 done.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 6 done.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 12 done.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 23 done.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 29 done.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 21 done.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 28 done.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 8 done.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 30 done.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 3 done.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 1 done.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 27 done.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 13 done.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 14 done.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]======|\u001b[38;5;246mPerforming CiC done.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]======|\u001b[38;5;246mPerforming CiC reduction...\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x1489b0000b60 for threadedDensity[1] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x1488e8000b60 for threadedDensity[2] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x1489a0000b60 for threadedDensity[3] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x1489b8000b60 for threadedDensity[4] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x1488d0000b60 for threadedDensity[5] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x1488e0000b60 for threadedDensity[6] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148970000b60 for threadedDensity[7] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148908000b60 for threadedDensity[8] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148950000b60 for threadedDensity[9] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148968000b60 for threadedDensity[10] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148980000b60 for threadedDensity[11] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148920000b60 for threadedDensity[12] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148960000b60 for threadedDensity[13] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148930000b60 for threadedDensity[14] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148918000b60 for threadedDensity[15] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148900000b60 for threadedDensity[16] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x1488dc000b60 for threadedDensity[17] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148938000b60 for threadedDensity[18] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x1488f8000b60 for threadedDensity[19] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148928000b60 for threadedDensity[20] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148990000b60 for threadedDensity[21] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148958000b60 for threadedDensity[22] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148910000b60 for threadedDensity[23] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x1488f0000b60 for threadedDensity[24] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148998000b60 for threadedDensity[25] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148978000b60 for threadedDensity[26] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148940000b60 for threadedDensity[27] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148988000b60 for threadedDensity[28] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x1488d8000b60 for threadedDensity[29] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x1489a8000b60 for threadedDensity[30] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148948000b60 for threadedDensity[31] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]======|\u001b[38;5;246mPerforming CiC reduction done.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]====|Getting density contrast (using 32 cores and 32 arrays, parallel routine 1) done.\n",
"[02:24:51\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]====|Getting gravitational potential, periodic boundary conditions (using 32 cores)...\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated memory (1081344 bytes) at 0x55cb08c1b190 for AUX in \u001b[38;5;227mpoisson_solvers.c\u001b[0;36m:\u001b[38;5;192msolve_poisson_DFT\u001b[0;36m:\u001b[0;32m106\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08c1b190 for AUX in \u001b[38;5;227mpoisson_solvers.c\u001b[0;36m:\u001b[38;5;192msolve_poisson_DFT\u001b[0;36m:\u001b[0;32m116\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]====|Getting gravitational potential, periodic boundary conditions (using 32 cores) done.\n",
"[02:24:51\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]====|Kicking particles (using 32 cores)...\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mnkick=18\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mndrift=18\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246maiKick=0.881250\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246maDrift=0.905000\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mafKick=0.928750\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mbeta_delta=-0.025711\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mbeta_lpt_1=0.000000\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mbeta_lpt_2=0.000000\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mbeta_ext=0.000000\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated memory (1048576 bytes) at 0x55cb08c1b190 for g_pad in \u001b[38;5;227mpmcola.c\u001b[0;36m:\u001b[38;5;192mkick_pm_cola\u001b[0;36m:\u001b[0;32m478\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated memory (393216 bytes) at 0x55cb08d1b1a0 for pp in \u001b[38;5;227mpmcola.c\u001b[0;36m:\u001b[38;5;192mkick_pm_cola\u001b[0;36m:\u001b[0;32m554\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Computing short-range forces (using 8 tiles and 32 / 32 cores)...\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (8192 bytes) at 0x55cb087cab30 for tiles in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m57\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb08635220 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb08d7b1b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb08d9b1c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb08dbb1d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb08ddb1e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb08dfb1f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb08e1b200 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb08e3b210 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb08e5b220 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb08e7b230 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb08e9b240 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb08ebb250 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb08edb260 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb08efb270 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb08f1b280 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb08f3b290 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb08f5b2a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb08f7b2b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb08f9b2c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb08fbb2d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb08fdb2e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb08ffb2f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0901b300 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0903b310 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0905b320 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0907b330 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0909b340 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb090bb350 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb090db360 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb090fb370 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0911b380 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0913b390 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0915b3a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0917b3b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0919b3c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb091bb3d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb091db3e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb091fb3f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0921b400 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0923b410 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0925b420 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0927b430 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0929b440 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb092bb450 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb092db460 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb092fb470 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0931b480 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0933b490 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0935b4a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0937b4b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0939b4c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb093bb4d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb093db4e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb093fb4f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0941b500 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0943b510 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0945b520 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0947b530 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0949b540 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb094bb550 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb094db560 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb094fb570 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0951b580 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0953b590 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0955b5a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0957b5b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0959b5c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb095bb5d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb095db5e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb095fb5f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0961b600 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0963b610 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0965b620 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0967b630 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0969b640 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb096bb650 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb096db660 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb096fb670 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0971b680 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0973b690 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0975b6a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0977b6b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0979b6c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb097bb6d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb097db6e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb097fb6f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0981b700 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0983b710 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0985b720 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0987b730 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0989b740 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb098bb750 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb098db760 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb098fb770 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0991b780 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0993b790 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0995b7a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0997b7b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0999b7c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb099bb7d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb099db7e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb099fb7f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09a1b800 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09a3b810 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09a5b820 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09a7b830 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09a9b840 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09abb850 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09adb860 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09afb870 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09b1b880 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09b3b890 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09b5b8a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09b7b8b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09b9b8c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09bbb8d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09bdb8e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09bfb8f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09c1b900 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09c3b910 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09c5b920 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09c7b930 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09c9b940 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09cbb950 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09cdb960 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09cfb970 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09d1b980 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09d3b990 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09d5b9a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09d7b9b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09d9b9c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09dbb9d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09ddb9e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09dfb9f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09e1ba00 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09e3ba10 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09e5ba20 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09e7ba30 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09e9ba40 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09ebba50 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09edba60 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09efba70 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09f1ba80 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09f3ba90 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09f5baa0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09f7bab0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09f9bac0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09fbbad0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09fdbae0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09ffbaf0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a01bb00 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a03bb10 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a05bb20 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a07bb30 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a09bb40 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a0bbb50 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a0dbb60 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a0fbb70 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a11bb80 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a13bb90 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a15bba0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a17bbb0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a19bbc0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a1bbbd0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a1dbbe0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a1fbbf0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a21bc00 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a23bc10 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a25bc20 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a27bc30 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a29bc40 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a2bbc50 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a2dbc60 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a2fbc70 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a31bc80 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a33bc90 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a35bca0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a37bcb0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a39bcc0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a3bbcd0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a3dbce0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a3fbcf0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a41bd00 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a43bd10 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a45bd20 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a47bd30 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a49bd40 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a4bbd50 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a4dbd60 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a4fbd70 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a51bd80 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a53bd90 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a55bda0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a57bdb0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a59bdc0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a5bbdd0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a5dbde0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a5fbdf0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a61be00 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a63be10 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a65be20 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a67be30 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a69be40 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a6bbe50 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a6dbe60 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a6fbe70 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a71be80 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a73be90 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a75bea0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a77beb0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a79bec0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a7bbed0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a7dbee0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a7fbef0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a81bf00 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a83bf10 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a85bf20 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a87bf30 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a89bf40 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a8bbf50 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a8dbf60 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a8fbf70 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a91bf80 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a93bf90 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a95bfa0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a97bfb0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a99bfc0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a9bbfd0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a9dbfe0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a9fbff0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0aa1c000 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0aa3c010 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0aa5c020 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0aa7c030 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0aa9c040 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0aabc050 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0aadc060 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0aafc070 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ab1c080 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ab3c090 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ab5c0a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ab7c0b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ab9c0c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0abbc0d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0abdc0e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0abfc0f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ac1c100 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ac3c110 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ac5c120 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ac7c130 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ac9c140 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0acbc150 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0acdc160 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0acfc170 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ad1c180 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ad3c190 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ad5c1a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ad7c1b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ad9c1c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0adbc1d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0addc1e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0adfc1f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ae1c200 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ae3c210 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ae5c220 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ae7c230 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ae9c240 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0aebc250 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0aedc260 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0aefc270 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0af1c280 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0af3c290 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0af5c2a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0af7c2b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0af9c2c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0afbc2d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0afdc2e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0affc2f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b01c300 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b03c310 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b05c320 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b07c330 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b09c340 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b0bc350 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b0dc360 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b0fc370 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b11c380 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b13c390 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b15c3a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b17c3b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b19c3c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b1bc3d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b1dc3e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b1fc3f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b21c400 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b23c410 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b25c420 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b27c430 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b29c440 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b2bc450 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b2dc460 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b2fc470 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b31c480 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b33c490 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b35c4a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b37c4b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b39c4c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b3bc4d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b3dc4e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b3fc4f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b41c500 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b43c510 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b45c520 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b47c530 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b49c540 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b4bc550 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b4dc560 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b4fc570 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b51c580 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b53c590 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b55c5a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b57c5b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b59c5c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b5bc5d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b5dc5e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b5fc5f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b61c600 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b63c610 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b65c620 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b67c630 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b69c640 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b6bc650 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b6dc660 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b6fc670 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b71c680 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b73c690 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b75c6a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b77c6b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b79c6c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b7bc6d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b7dc6e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b7fc6f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b81c700 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b83c710 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b85c720 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b87c730 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b89c740 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b8bc750 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b8dc760 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b8fc770 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b91c780 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b93c790 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b95c7a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b97c7b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b99c7c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b9bc7d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b9dc7e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b9fc7f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ba1c800 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ba3c810 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ba5c820 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ba7c830 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ba9c840 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0babc850 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0badc860 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bafc870 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bb1c880 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bb3c890 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bb5c8a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bb7c8b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bb9c8c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bbbc8d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bbdc8e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bbfc8f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bc1c900 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bc3c910 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bc5c920 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bc7c930 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bc9c940 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bcbc950 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bcdc960 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bcfc970 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bd1c980 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bd3c990 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bd5c9a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bd7c9b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bd9c9c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bdbc9d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bddc9e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bdfc9f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0be1ca00 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0be3ca10 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0be5ca20 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0be7ca30 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0be9ca40 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bebca50 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bedca60 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0befca70 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bf1ca80 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bf3ca90 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bf5caa0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bf7cab0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bf9cac0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bfbcad0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bfdcae0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bffcaf0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c01cb00 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c03cb10 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c05cb20 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c07cb30 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c09cb40 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c0bcb50 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c0dcb60 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c0fcb70 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c11cb80 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c13cb90 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c15cba0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c17cbb0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c19cbc0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c1bcbd0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c1dcbe0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c1fcbf0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c21cc00 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c23cc10 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c25cc20 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c27cc30 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c29cc40 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c2bcc50 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c2dcc60 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c2fcc70 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c31cc80 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c33cc90 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c35cca0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c37ccb0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c39ccc0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c3bccd0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c3dcce0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c3fccf0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c41cd00 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c43cd10 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c45cd20 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c47cd30 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c49cd40 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c4bcd50 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c4dcd60 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c4fcd70 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c51cd80 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c53cd90 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c55cda0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c57cdb0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c59cdc0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c5bcdd0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c5dcde0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c5fcdf0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c61ce00 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c63ce10 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c65ce20 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c67ce30 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c69ce40 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c6bce50 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c6dce60 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c6fce70 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c71ce80 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c73ce90 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c75cea0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c77ceb0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c79cec0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c7bced0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c7dcee0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c7fcef0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c81cf00 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c83cf10 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c85cf20 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c87cf30 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c89cf40 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c8bcf50 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c8dcf60 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c8fcf70 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c91cf80 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c93cf90 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c95cfa0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c97cfb0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c99cfc0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c9bcfd0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c9dcfe0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c9fcff0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ca1d000 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ca3d010 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ca5d020 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ca7d030 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ca9d040 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0cabd050 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0cadd060 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0cafd070 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0cb1d080 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0cb3d090 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0cb5d0a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0cb7d0b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0cb9d0c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0cbbd0d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0cbdd0e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0cbfd0f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0cc1d100 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0cc3d110 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0cc5d120 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0cc7d130 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0cc9d140 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ccbd150 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ccdd160 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ccfd170 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0cd1d180 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0cd3d190 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08635220 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08d7b1b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08d9b1c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08dbb1d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08ddb1e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08dfb1f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08e1b200 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08e3b210 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08e5b220 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08e7b230 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08e9b240 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08ebb250 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08edb260 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08efb270 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08f1b280 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08f3b290 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08f5b2a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08f7b2b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08f9b2c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08fbb2d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08fdb2e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08ffb2f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0901b300 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0903b310 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0905b320 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0907b330 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0909b340 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb090bb350 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb090db360 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb090fb370 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0911b380 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0913b390 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0915b3a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0917b3b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0919b3c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb091bb3d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb091db3e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb091fb3f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0921b400 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0923b410 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0925b420 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0927b430 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0929b440 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb092bb450 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb092db460 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb092fb470 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0931b480 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0933b490 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0935b4a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0937b4b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0939b4c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb093bb4d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb093db4e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb093fb4f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0941b500 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0943b510 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0945b520 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0947b530 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0949b540 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb094bb550 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb094db560 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb094fb570 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0951b580 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0953b590 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0955b5a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0957b5b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0959b5c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb095bb5d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb095db5e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb095fb5f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0961b600 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0963b610 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0965b620 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0967b630 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0969b640 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb096bb650 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb096db660 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb096fb670 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0971b680 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0973b690 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0975b6a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0977b6b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0979b6c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb097bb6d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb097db6e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb097fb6f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0981b700 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0983b710 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0985b720 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0987b730 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0989b740 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb098bb750 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb098db760 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb098fb770 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0991b780 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0993b790 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0995b7a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0997b7b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0999b7c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb099bb7d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb099db7e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb099fb7f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09a1b800 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09a3b810 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09a5b820 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09a7b830 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09a9b840 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09abb850 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09adb860 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09afb870 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09b1b880 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09b3b890 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09b5b8a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09b7b8b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09b9b8c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09bbb8d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09bdb8e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09bfb8f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09c1b900 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09c3b910 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09c5b920 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09c7b930 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09c9b940 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09cbb950 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09cdb960 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09cfb970 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09d1b980 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09d3b990 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09d5b9a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09d7b9b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09d9b9c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09dbb9d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09ddb9e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09dfb9f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09e1ba00 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09e3ba10 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09e5ba20 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09e7ba30 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09e9ba40 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09ebba50 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09edba60 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09efba70 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09f1ba80 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09f3ba90 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09f5baa0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09f7bab0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09f9bac0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09fbbad0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09fdbae0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09ffbaf0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a01bb00 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a03bb10 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a05bb20 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a07bb30 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a09bb40 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a0bbb50 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a0dbb60 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a0fbb70 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a11bb80 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a13bb90 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a15bba0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a17bbb0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a19bbc0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a1bbbd0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a1dbbe0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a1fbbf0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a21bc00 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a23bc10 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a25bc20 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a27bc30 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a29bc40 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a2bbc50 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a2dbc60 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a2fbc70 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a31bc80 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a33bc90 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a35bca0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a37bcb0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a39bcc0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a3bbcd0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a3dbce0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a3fbcf0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a41bd00 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a43bd10 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a45bd20 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a47bd30 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a49bd40 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a4bbd50 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a4dbd60 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a4fbd70 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a51bd80 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a53bd90 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a55bda0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a57bdb0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a59bdc0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a5bbdd0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a5dbde0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a5fbdf0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a61be00 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a63be10 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a65be20 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a67be30 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a69be40 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a6bbe50 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a6dbe60 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a6fbe70 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a71be80 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a73be90 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a75bea0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a77beb0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a79bec0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a7bbed0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a7dbee0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a7fbef0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a81bf00 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a83bf10 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a85bf20 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a87bf30 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a89bf40 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a8bbf50 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a8dbf60 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a8fbf70 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a91bf80 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a93bf90 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a95bfa0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a97bfb0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a99bfc0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a9bbfd0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a9dbfe0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a9fbff0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0aa1c000 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0aa3c010 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0aa5c020 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0aa7c030 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0aa9c040 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0aabc050 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0aadc060 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0aafc070 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ab1c080 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ab3c090 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ab5c0a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ab7c0b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ab9c0c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0abbc0d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0abdc0e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0abfc0f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ac1c100 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ac3c110 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ac5c120 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ac7c130 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ac9c140 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0acbc150 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0acdc160 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0acfc170 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ad1c180 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ad3c190 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ad5c1a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ad7c1b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ad9c1c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0adbc1d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0addc1e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0adfc1f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ae1c200 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ae3c210 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ae5c220 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ae7c230 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ae9c240 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0aebc250 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0aedc260 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0aefc270 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0af1c280 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0af3c290 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0af5c2a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0af7c2b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0af9c2c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0afbc2d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0afdc2e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0affc2f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b01c300 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b03c310 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b05c320 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b07c330 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b09c340 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b0bc350 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b0dc360 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b0fc370 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b11c380 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b13c390 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b15c3a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b17c3b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b19c3c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b1bc3d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b1dc3e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b1fc3f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b21c400 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b23c410 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b25c420 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b27c430 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b29c440 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b2bc450 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b2dc460 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b2fc470 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b31c480 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b33c490 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b35c4a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b37c4b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b39c4c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b3bc4d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b3dc4e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b3fc4f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b41c500 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b43c510 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b45c520 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b47c530 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b49c540 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b4bc550 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b4dc560 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b4fc570 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b51c580 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b53c590 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b55c5a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b57c5b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b59c5c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b5bc5d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b5dc5e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b5fc5f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b61c600 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b63c610 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b65c620 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b67c630 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b69c640 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b6bc650 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b6dc660 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b6fc670 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b71c680 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b73c690 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b75c6a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b77c6b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b79c6c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b7bc6d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b7dc6e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b7fc6f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b81c700 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b83c710 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b85c720 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b87c730 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b89c740 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b8bc750 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b8dc760 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b8fc770 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b91c780 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b93c790 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b95c7a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b97c7b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b99c7c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b9bc7d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b9dc7e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b9fc7f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ba1c800 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ba3c810 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ba5c820 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ba7c830 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ba9c840 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0babc850 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0badc860 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bafc870 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bb1c880 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bb3c890 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bb5c8a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bb7c8b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bb9c8c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bbbc8d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bbdc8e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bbfc8f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bc1c900 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bc3c910 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bc5c920 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bc7c930 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bc9c940 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bcbc950 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bcdc960 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bcfc970 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bd1c980 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bd3c990 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bd5c9a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bd7c9b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bd9c9c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bdbc9d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bddc9e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bdfc9f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0be1ca00 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0be3ca10 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0be5ca20 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0be7ca30 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0be9ca40 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bebca50 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bedca60 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0befca70 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bf1ca80 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bf3ca90 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bf5caa0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bf7cab0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bf9cac0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bfbcad0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bfdcae0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bffcaf0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c01cb00 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c03cb10 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c05cb20 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c07cb30 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c09cb40 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c0bcb50 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c0dcb60 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c0fcb70 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c11cb80 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c13cb90 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c15cba0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c17cbb0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c19cbc0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c1bcbd0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c1dcbe0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c1fcbf0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c21cc00 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c23cc10 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c25cc20 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c27cc30 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c29cc40 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c2bcc50 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c2dcc60 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c2fcc70 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c31cc80 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c33cc90 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c35cca0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c37ccb0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c39ccc0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c3bccd0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c3dcce0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c3fccf0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c41cd00 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c43cd10 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c45cd20 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c47cd30 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c49cd40 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c4bcd50 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c4dcd60 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c4fcd70 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c51cd80 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c53cd90 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c55cda0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c57cdb0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c59cdc0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c5bcdd0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c5dcde0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c5fcdf0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c61ce00 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c63ce10 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c65ce20 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c67ce30 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c69ce40 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c6bce50 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c6dce60 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c6fce70 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c71ce80 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c73ce90 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c75cea0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c77ceb0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c79cec0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c7bced0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c7dcee0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c7fcef0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c81cf00 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c83cf10 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c85cf20 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c87cf30 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c89cf40 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c8bcf50 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c8dcf60 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c8fcf70 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c91cf80 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c93cf90 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c95cfa0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c97cfb0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c99cfc0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c9bcfd0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c9dcfe0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c9fcff0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ca1d000 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ca3d010 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ca5d020 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ca7d030 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ca9d040 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0cabd050 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0cadd060 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0cafd070 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0cb1d080 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0cb3d090 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0cb5d0a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0cb7d0b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0cb9d0c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0cbbd0d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0cbdd0e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0cbfd0f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0cc1d100 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0cc3d110 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0cc5d120 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0cc7d130 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0cc9d140 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ccbd150 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ccdd160 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ccfd170 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0cd1d180 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0cd3d190 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb087cab30 for tiles in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m211\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Computing short-range forces (using 8 tiles and 32 / 32 cores) done.\n",
"[02:24:51\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Acceleration loop, direction 0...\n",
"[02:24:51\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Acceleration loop, direction 0 done.\n",
"[02:24:51\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Kick loop, direction 0...\n",
"[02:24:51\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Kick loop, direction 0 done.\n",
"[02:24:51\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Acceleration loop, direction 1...\n",
"[02:24:51\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Acceleration loop, direction 1 done.\n",
"[02:24:51\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Kick loop, direction 1...\n",
"[02:24:51\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Kick loop, direction 1 done.\n",
"[02:24:51\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Acceleration loop, direction 2...\n",
"[02:24:51\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Acceleration loop, direction 2 done.\n",
"[02:24:51\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Kick loop, direction 2...\n",
"[02:24:51\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Kick loop, direction 2 done.\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08c1b190 for g_pad in \u001b[38;5;227mpmcola.c\u001b[0;36m:\u001b[38;5;192mkick_pm_cola\u001b[0;36m:\u001b[0;32m592\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08d1b1a0 for pp in \u001b[38;5;227mpmcola.c\u001b[0;36m:\u001b[38;5;192mkick_pm_cola\u001b[0;36m:\u001b[0;32m598\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]====|Kicking particles (using 32 cores) done.\n",
"[02:24:51\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]====|Drifting particles (using 32 cores)...\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mndrift=18\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mnkick=18\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246maiDrift=0.905000\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246maKick=0.928750\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mafDrift=0.952500\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246malpha_p=0.057174\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246malpha_lpt_1=0.000000\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246malpha_lpt_2=0.000000\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246malpha_ext=0.000000\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Drift loop, direction 0...\n",
"[02:24:51\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Drift loop, direction 0 done.\n",
"[02:24:51\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Drift loop, direction 1...\n",
"[02:24:51\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Drift loop, direction 1 done.\n",
"[02:24:51\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Drift loop, direction 2...\n",
"[02:24:51\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Drift loop, direction 2 done.\n",
"[02:24:51\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]====|Drifting particles (using 32 cores) done.\n",
"[02:24:51\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]==|ModuleP3M: End P3M step 19/20, time_kick:0.928750, time_drift=0.952500.\n",
"[02:24:51\u001b[00m|\u001b[38;5;159mTIMER \u001b[00m]==|Step 19/20: Density: 3.914 CPU - 0.125 wallclock seconds used.\n",
"[02:24:51\u001b[00m|\u001b[38;5;159mTIMER \u001b[00m]==|Step 19/20: Potential: 1.000 CPU - 0.037 wallclock seconds used.\n",
"[02:24:51\u001b[00m|\u001b[38;5;159mTIMER \u001b[00m]==|Step 19/20: Accelerations (long-range): 0.130 CPU - 0.004 wallclock seconds used.\n",
"[02:24:51\u001b[00m|\u001b[38;5;159mTIMER \u001b[00m]==|Step 19/20: Accelerations (short-range): 3.068 CPU - 0.265 wallclock seconds used.\n",
"[02:24:51\u001b[00m|\u001b[38;5;159mTIMER \u001b[00m]==|Step 19/20: Kick: 0.032 CPU - 0.001 wallclock seconds used.\n",
"[02:24:51\u001b[00m|\u001b[38;5;159mTIMER \u001b[00m]==|Step 19/20: Drift: 0.000 CPU - 0.000 wallclock seconds used.\n",
"[02:24:51\u001b[00m|\u001b[38;5;159mTIMER \u001b[00m]==|Step 19/20: Inputs: 0.000 CPU - 0.000 wallclock seconds used.\n",
"[02:24:51\u001b[00m|\u001b[38;5;159mTIMER \u001b[00m]==|Step 19/20: Diagnostic: 0.000 CPU - 0.000 wallclock seconds used.\n",
"[02:24:51\u001b[00m|\u001b[38;5;159mTIMER \u001b[00m]==|Step 19/20: Outputs: 0.000 CPU - 0.000 wallclock seconds used.\n",
"[02:24:51\u001b[00m|\u001b[38;5;159mTIMER \u001b[00m]==|Step 19/20: Total Evolution: 8.144 CPU - 0.433 wallclock seconds used.\n",
"[02:24:51\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]==|ModuleP3M: Begin P3M step 20/20, time_kick:0.928750, time_drift=0.952500.\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]====|\u001b[38;5;246mGiven the available memory, 4095 threads could be allocated and 32 threads will be used in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel\u001b[0;36m:\u001b[0;32m347\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]====|\u001b[38;5;246mGiven the available memory, 4095 threads could be allocated and 32 threads will be used in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m73\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]====|Getting density contrast (using 32 cores and 32 arrays, parallel routine 1)...\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]======|\u001b[38;5;246mPerforming CiC binning...\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 0...\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148940000b60 for threadedDensity[27] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148960000b60 for threadedDensity[13] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 27...\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 13...\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1488e0000b60 for threadedDensity[6] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148920000b60 for threadedDensity[12] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 6...\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 12...\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1488f8000b60 for threadedDensity[19] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1488dc000b60 for threadedDensity[17] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 19...\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 17...\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1489b8000b60 for threadedDensity[4] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148958000b60 for threadedDensity[22] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148968000b60 for threadedDensity[10] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148970000b60 for threadedDensity[7] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 10...\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 7...\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148980000b60 for threadedDensity[11] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1488e8000b60 for threadedDensity[2] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 11...\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 2...\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 22...\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148938000b60 for threadedDensity[18] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148948000b60 for threadedDensity[31] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 18...\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 31...\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1488f0000b60 for threadedDensity[24] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148928000b60 for threadedDensity[20] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 24...\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 20...\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148918000b60 for threadedDensity[15] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148950000b60 for threadedDensity[9] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 15...\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 9...\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148900000b60 for threadedDensity[16] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148930000b60 for threadedDensity[14] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 16...\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 14...\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148978000b60 for threadedDensity[26] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1488d0000b60 for threadedDensity[5] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 26...\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 5...\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1489b0000b60 for threadedDensity[1] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1489a0000b60 for threadedDensity[3] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 1...\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 3...\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148910000b60 for threadedDensity[23] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1488d8000b60 for threadedDensity[29] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 23...\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 29...\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148990000b60 for threadedDensity[21] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148988000b60 for threadedDensity[28] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 21...\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 28...\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148908000b60 for threadedDensity[8] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 4...\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 8...\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1489a8000b60 for threadedDensity[30] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 30...\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148998000b60 for threadedDensity[25] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 25...\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 1 done.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 3 done.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 10 done.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 7 done.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 11 done.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 2 done.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 25 done.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 18 done.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 31 done.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 24 done.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 20 done.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 15 done.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 9 done.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 5 done.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 26 done.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 14 done.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 16 done.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 19 done.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 17 done.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 29 done.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 23 done.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 4 done.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 0 done.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 12 done.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 6 done.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 28 done.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 21 done.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 8 done.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 30 done.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 13 done.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 27 done.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 22 done.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]======|\u001b[38;5;246mPerforming CiC done.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]======|\u001b[38;5;246mPerforming CiC reduction...\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x1489b0000b60 for threadedDensity[1] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x1488e8000b60 for threadedDensity[2] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x1489a0000b60 for threadedDensity[3] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x1489b8000b60 for threadedDensity[4] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x1488d0000b60 for threadedDensity[5] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x1488e0000b60 for threadedDensity[6] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148970000b60 for threadedDensity[7] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148908000b60 for threadedDensity[8] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148950000b60 for threadedDensity[9] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148968000b60 for threadedDensity[10] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148980000b60 for threadedDensity[11] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148920000b60 for threadedDensity[12] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148960000b60 for threadedDensity[13] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148930000b60 for threadedDensity[14] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148918000b60 for threadedDensity[15] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148900000b60 for threadedDensity[16] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x1488dc000b60 for threadedDensity[17] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148938000b60 for threadedDensity[18] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x1488f8000b60 for threadedDensity[19] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148928000b60 for threadedDensity[20] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148990000b60 for threadedDensity[21] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148958000b60 for threadedDensity[22] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148910000b60 for threadedDensity[23] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x1488f0000b60 for threadedDensity[24] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148998000b60 for threadedDensity[25] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148978000b60 for threadedDensity[26] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148940000b60 for threadedDensity[27] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148988000b60 for threadedDensity[28] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x1488d8000b60 for threadedDensity[29] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x1489a8000b60 for threadedDensity[30] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148948000b60 for threadedDensity[31] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]======|\u001b[38;5;246mPerforming CiC reduction done.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]====|Getting density contrast (using 32 cores and 32 arrays, parallel routine 1) done.\n",
"[02:24:51\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]====|Getting gravitational potential, periodic boundary conditions (using 32 cores)...\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated memory (1081344 bytes) at 0x55cb08c1b190 for AUX in \u001b[38;5;227mpoisson_solvers.c\u001b[0;36m:\u001b[38;5;192msolve_poisson_DFT\u001b[0;36m:\u001b[0;32m106\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08c1b190 for AUX in \u001b[38;5;227mpoisson_solvers.c\u001b[0;36m:\u001b[38;5;192msolve_poisson_DFT\u001b[0;36m:\u001b[0;32m116\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]====|Getting gravitational potential, periodic boundary conditions (using 32 cores) done.\n",
"[02:24:51\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]====|Kicking particles (using 32 cores)...\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mnkick=19\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mndrift=19\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246maiKick=0.928750\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246maDrift=0.952500\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mafKick=0.976250\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mbeta_delta=-0.023862\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mbeta_lpt_1=0.000000\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mbeta_lpt_2=0.000000\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mbeta_ext=0.000000\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated memory (1048576 bytes) at 0x55cb08c1b190 for g_pad in \u001b[38;5;227mpmcola.c\u001b[0;36m:\u001b[38;5;192mkick_pm_cola\u001b[0;36m:\u001b[0;32m478\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated memory (393216 bytes) at 0x55cb08d1b1a0 for pp in \u001b[38;5;227mpmcola.c\u001b[0;36m:\u001b[38;5;192mkick_pm_cola\u001b[0;36m:\u001b[0;32m554\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Computing short-range forces (using 8 tiles and 32 / 32 cores)...\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (8192 bytes) at 0x55cb087cab30 for tiles in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m57\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb08635220 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb08d7b1b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb08d9b1c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb08dbb1d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb08ddb1e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb08dfb1f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb08e1b200 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb08e3b210 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb08e5b220 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb08e7b230 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb08e9b240 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb08ebb250 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb08edb260 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb08efb270 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb08f1b280 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb08f3b290 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb08f5b2a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb08f7b2b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb08f9b2c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb08fbb2d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb08fdb2e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb08ffb2f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0901b300 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0903b310 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0905b320 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0907b330 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0909b340 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb090bb350 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb090db360 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb090fb370 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0911b380 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0913b390 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0915b3a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0917b3b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0919b3c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb091bb3d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb091db3e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb091fb3f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0921b400 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0923b410 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0925b420 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0927b430 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0929b440 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb092bb450 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb092db460 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb092fb470 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0931b480 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0933b490 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0935b4a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0937b4b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0939b4c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb093bb4d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb093db4e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb093fb4f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0941b500 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0943b510 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0945b520 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0947b530 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0949b540 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb094bb550 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb094db560 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb094fb570 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0951b580 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0953b590 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0955b5a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0957b5b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0959b5c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb095bb5d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb095db5e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb095fb5f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0961b600 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0963b610 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0965b620 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0967b630 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0969b640 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb096bb650 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb096db660 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb096fb670 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0971b680 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0973b690 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0975b6a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0977b6b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0979b6c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb097bb6d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb097db6e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb097fb6f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0981b700 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0983b710 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0985b720 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0987b730 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0989b740 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb098bb750 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb098db760 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb098fb770 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0991b780 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0993b790 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0995b7a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0997b7b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0999b7c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb099bb7d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb099db7e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb099fb7f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09a1b800 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09a3b810 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09a5b820 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09a7b830 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09a9b840 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09abb850 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09adb860 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09afb870 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09b1b880 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09b3b890 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09b5b8a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09b7b8b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09b9b8c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09bbb8d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09bdb8e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09bfb8f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09c1b900 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09c3b910 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09c5b920 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09c7b930 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09c9b940 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09cbb950 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09cdb960 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09cfb970 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09d1b980 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09d3b990 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09d5b9a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09d7b9b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09d9b9c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09dbb9d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09ddb9e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09dfb9f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09e1ba00 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09e3ba10 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09e5ba20 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09e7ba30 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09e9ba40 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09ebba50 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09edba60 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09efba70 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09f1ba80 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09f3ba90 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09f5baa0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09f7bab0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09f9bac0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09fbbad0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09fdbae0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09ffbaf0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a01bb00 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a03bb10 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a05bb20 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a07bb30 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a09bb40 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a0bbb50 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a0dbb60 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a0fbb70 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a11bb80 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a13bb90 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a15bba0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a17bbb0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a19bbc0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a1bbbd0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a1dbbe0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a1fbbf0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a21bc00 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a23bc10 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a25bc20 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a27bc30 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a29bc40 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a2bbc50 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a2dbc60 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a2fbc70 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a31bc80 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a33bc90 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a35bca0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a37bcb0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a39bcc0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a3bbcd0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a3dbce0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a3fbcf0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a41bd00 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a43bd10 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a45bd20 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a47bd30 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a49bd40 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a4bbd50 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a4dbd60 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a4fbd70 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a51bd80 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a53bd90 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a55bda0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a57bdb0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a59bdc0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a5bbdd0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a5dbde0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a5fbdf0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a61be00 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a63be10 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a65be20 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a67be30 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a69be40 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a6bbe50 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a6dbe60 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a6fbe70 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a71be80 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a73be90 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a75bea0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a77beb0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a79bec0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a7bbed0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a7dbee0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a7fbef0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a81bf00 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a83bf10 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a85bf20 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a87bf30 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a89bf40 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a8bbf50 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a8dbf60 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a8fbf70 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a91bf80 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a93bf90 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a95bfa0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a97bfb0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a99bfc0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a9bbfd0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a9dbfe0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a9fbff0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0aa1c000 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0aa3c010 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0aa5c020 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0aa7c030 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0aa9c040 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0aabc050 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0aadc060 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0aafc070 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ab1c080 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ab3c090 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ab5c0a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ab7c0b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ab9c0c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0abbc0d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0abdc0e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0abfc0f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ac1c100 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ac3c110 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ac5c120 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ac7c130 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ac9c140 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0acbc150 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0acdc160 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0acfc170 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ad1c180 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ad3c190 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ad5c1a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ad7c1b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ad9c1c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0adbc1d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0addc1e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0adfc1f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ae1c200 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ae3c210 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ae5c220 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ae7c230 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ae9c240 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0aebc250 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0aedc260 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0aefc270 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0af1c280 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0af3c290 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0af5c2a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0af7c2b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0af9c2c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0afbc2d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0afdc2e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0affc2f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b01c300 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b03c310 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b05c320 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b07c330 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b09c340 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b0bc350 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b0dc360 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b0fc370 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b11c380 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b13c390 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b15c3a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b17c3b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b19c3c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b1bc3d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b1dc3e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b1fc3f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b21c400 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b23c410 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b25c420 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b27c430 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b29c440 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b2bc450 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b2dc460 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b2fc470 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b31c480 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b33c490 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b35c4a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b37c4b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b39c4c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b3bc4d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b3dc4e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b3fc4f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b41c500 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b43c510 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b45c520 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b47c530 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b49c540 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b4bc550 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b4dc560 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b4fc570 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b51c580 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b53c590 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b55c5a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b57c5b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b59c5c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b5bc5d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b5dc5e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b5fc5f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b61c600 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b63c610 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b65c620 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b67c630 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b69c640 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b6bc650 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b6dc660 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b6fc670 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b71c680 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b73c690 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b75c6a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b77c6b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b79c6c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b7bc6d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b7dc6e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b7fc6f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b81c700 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b83c710 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b85c720 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b87c730 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b89c740 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b8bc750 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b8dc760 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b8fc770 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b91c780 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b93c790 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b95c7a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b97c7b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b99c7c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b9bc7d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b9dc7e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b9fc7f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ba1c800 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ba3c810 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ba5c820 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ba7c830 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ba9c840 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0babc850 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0badc860 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bafc870 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bb1c880 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bb3c890 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bb5c8a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bb7c8b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bb9c8c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bbbc8d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bbdc8e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bbfc8f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bc1c900 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bc3c910 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bc5c920 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bc7c930 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bc9c940 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bcbc950 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bcdc960 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bcfc970 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bd1c980 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bd3c990 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bd5c9a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bd7c9b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bd9c9c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bdbc9d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bddc9e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bdfc9f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0be1ca00 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0be3ca10 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0be5ca20 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0be7ca30 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0be9ca40 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bebca50 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bedca60 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0befca70 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bf1ca80 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bf3ca90 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bf5caa0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bf7cab0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bf9cac0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bfbcad0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bfdcae0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bffcaf0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c01cb00 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c03cb10 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c05cb20 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c07cb30 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c09cb40 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c0bcb50 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c0dcb60 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c0fcb70 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c11cb80 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c13cb90 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c15cba0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c17cbb0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c19cbc0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c1bcbd0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c1dcbe0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c1fcbf0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c21cc00 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c23cc10 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c25cc20 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c27cc30 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c29cc40 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c2bcc50 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c2dcc60 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c2fcc70 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c31cc80 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c33cc90 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c35cca0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c37ccb0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c39ccc0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c3bccd0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c3dcce0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c3fccf0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c41cd00 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c43cd10 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c45cd20 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c47cd30 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c49cd40 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c4bcd50 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c4dcd60 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c4fcd70 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c51cd80 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c53cd90 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c55cda0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c57cdb0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c59cdc0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c5bcdd0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c5dcde0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c5fcdf0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c61ce00 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c63ce10 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c65ce20 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c67ce30 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c69ce40 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c6bce50 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c6dce60 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c6fce70 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c71ce80 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c73ce90 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c75cea0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c77ceb0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c79cec0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c7bced0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c7dcee0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c7fcef0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c81cf00 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c83cf10 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c85cf20 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c87cf30 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c89cf40 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c8bcf50 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c8dcf60 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c8fcf70 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c91cf80 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c93cf90 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c95cfa0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c97cfb0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c99cfc0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c9bcfd0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c9dcfe0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c9fcff0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ca1d000 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ca3d010 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ca5d020 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ca7d030 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ca9d040 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0cabd050 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0cadd060 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0cafd070 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0cb1d080 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0cb3d090 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0cb5d0a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0cb7d0b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0cb9d0c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0cbbd0d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0cbdd0e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0cbfd0f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0cc1d100 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0cc3d110 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0cc5d120 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0cc7d130 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0cc9d140 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ccbd150 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ccdd160 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ccfd170 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0cd1d180 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:51\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0cd3d190 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08635220 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08d7b1b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08d9b1c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08dbb1d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08ddb1e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08dfb1f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08e1b200 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08e3b210 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08e5b220 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08e7b230 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08e9b240 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08ebb250 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08edb260 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08efb270 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08f1b280 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08f3b290 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08f5b2a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08f7b2b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08f9b2c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08fbb2d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08fdb2e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08ffb2f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0901b300 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0903b310 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0905b320 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0907b330 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0909b340 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb090bb350 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb090db360 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb090fb370 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0911b380 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0913b390 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0915b3a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0917b3b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0919b3c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb091bb3d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb091db3e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb091fb3f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0921b400 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0923b410 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0925b420 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0927b430 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0929b440 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb092bb450 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb092db460 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb092fb470 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0931b480 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0933b490 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0935b4a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0937b4b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0939b4c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb093bb4d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb093db4e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb093fb4f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0941b500 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0943b510 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0945b520 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0947b530 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0949b540 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb094bb550 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb094db560 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb094fb570 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0951b580 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0953b590 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0955b5a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0957b5b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0959b5c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb095bb5d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb095db5e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb095fb5f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0961b600 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0963b610 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0965b620 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0967b630 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0969b640 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb096bb650 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb096db660 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb096fb670 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0971b680 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0973b690 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0975b6a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0977b6b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0979b6c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb097bb6d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb097db6e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb097fb6f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0981b700 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0983b710 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0985b720 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0987b730 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0989b740 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb098bb750 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb098db760 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb098fb770 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0991b780 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0993b790 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0995b7a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0997b7b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0999b7c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb099bb7d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb099db7e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb099fb7f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09a1b800 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09a3b810 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09a5b820 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09a7b830 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09a9b840 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09abb850 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09adb860 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09afb870 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09b1b880 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09b3b890 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09b5b8a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09b7b8b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09b9b8c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09bbb8d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09bdb8e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09bfb8f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09c1b900 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09c3b910 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09c5b920 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09c7b930 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09c9b940 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09cbb950 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09cdb960 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09cfb970 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09d1b980 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09d3b990 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09d5b9a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09d7b9b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09d9b9c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09dbb9d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09ddb9e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09dfb9f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09e1ba00 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09e3ba10 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09e5ba20 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09e7ba30 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09e9ba40 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09ebba50 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09edba60 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09efba70 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09f1ba80 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09f3ba90 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09f5baa0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09f7bab0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09f9bac0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09fbbad0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09fdbae0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb09ffbaf0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a01bb00 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a03bb10 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a05bb20 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a07bb30 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a09bb40 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a0bbb50 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a0dbb60 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a0fbb70 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a11bb80 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a13bb90 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a15bba0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a17bbb0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a19bbc0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a1bbbd0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a1dbbe0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a1fbbf0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a21bc00 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a23bc10 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a25bc20 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a27bc30 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a29bc40 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a2bbc50 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a2dbc60 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a2fbc70 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a31bc80 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a33bc90 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a35bca0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a37bcb0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a39bcc0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a3bbcd0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a3dbce0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a3fbcf0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a41bd00 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a43bd10 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a45bd20 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a47bd30 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a49bd40 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a4bbd50 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a4dbd60 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a4fbd70 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a51bd80 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a53bd90 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a55bda0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a57bdb0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a59bdc0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a5bbdd0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a5dbde0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a5fbdf0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a61be00 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a63be10 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a65be20 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a67be30 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a69be40 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a6bbe50 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a6dbe60 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a6fbe70 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a71be80 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a73be90 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a75bea0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a77beb0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a79bec0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a7bbed0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a7dbee0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a7fbef0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a81bf00 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a83bf10 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a85bf20 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a87bf30 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a89bf40 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a8bbf50 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a8dbf60 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a8fbf70 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a91bf80 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a93bf90 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a95bfa0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a97bfb0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a99bfc0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a9bbfd0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a9dbfe0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0a9fbff0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0aa1c000 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0aa3c010 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0aa5c020 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0aa7c030 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0aa9c040 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0aabc050 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0aadc060 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0aafc070 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ab1c080 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ab3c090 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ab5c0a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ab7c0b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ab9c0c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0abbc0d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0abdc0e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0abfc0f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ac1c100 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ac3c110 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ac5c120 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ac7c130 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ac9c140 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0acbc150 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0acdc160 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0acfc170 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ad1c180 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ad3c190 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ad5c1a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ad7c1b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ad9c1c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0adbc1d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0addc1e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0adfc1f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ae1c200 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ae3c210 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ae5c220 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ae7c230 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ae9c240 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0aebc250 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0aedc260 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0aefc270 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0af1c280 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0af3c290 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0af5c2a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0af7c2b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0af9c2c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0afbc2d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0afdc2e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0affc2f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b01c300 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b03c310 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b05c320 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b07c330 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b09c340 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b0bc350 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b0dc360 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b0fc370 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b11c380 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b13c390 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b15c3a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b17c3b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b19c3c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b1bc3d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b1dc3e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b1fc3f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b21c400 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b23c410 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b25c420 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b27c430 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b29c440 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b2bc450 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b2dc460 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b2fc470 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b31c480 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b33c490 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b35c4a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b37c4b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b39c4c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b3bc4d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b3dc4e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b3fc4f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b41c500 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b43c510 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b45c520 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b47c530 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b49c540 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b4bc550 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b4dc560 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b4fc570 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b51c580 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b53c590 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b55c5a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b57c5b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b59c5c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b5bc5d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b5dc5e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b5fc5f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b61c600 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b63c610 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b65c620 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b67c630 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b69c640 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b6bc650 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b6dc660 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b6fc670 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b71c680 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b73c690 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b75c6a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b77c6b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b79c6c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b7bc6d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b7dc6e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b7fc6f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b81c700 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b83c710 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b85c720 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b87c730 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b89c740 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b8bc750 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b8dc760 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b8fc770 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b91c780 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b93c790 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b95c7a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b97c7b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b99c7c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b9bc7d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b9dc7e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0b9fc7f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ba1c800 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ba3c810 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ba5c820 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ba7c830 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ba9c840 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0babc850 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0badc860 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bafc870 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bb1c880 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bb3c890 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bb5c8a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bb7c8b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bb9c8c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bbbc8d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bbdc8e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bbfc8f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bc1c900 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bc3c910 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bc5c920 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bc7c930 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bc9c940 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bcbc950 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bcdc960 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bcfc970 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bd1c980 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bd3c990 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bd5c9a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bd7c9b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bd9c9c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bdbc9d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bddc9e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bdfc9f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0be1ca00 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0be3ca10 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0be5ca20 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0be7ca30 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0be9ca40 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bebca50 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bedca60 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0befca70 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bf1ca80 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bf3ca90 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bf5caa0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bf7cab0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bf9cac0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bfbcad0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bfdcae0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0bffcaf0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c01cb00 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c03cb10 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c05cb20 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c07cb30 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c09cb40 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c0bcb50 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c0dcb60 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c0fcb70 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c11cb80 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c13cb90 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c15cba0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c17cbb0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c19cbc0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c1bcbd0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c1dcbe0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c1fcbf0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c21cc00 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c23cc10 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c25cc20 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c27cc30 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c29cc40 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c2bcc50 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c2dcc60 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c2fcc70 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c31cc80 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c33cc90 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c35cca0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c37ccb0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c39ccc0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c3bccd0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c3dcce0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c3fccf0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c41cd00 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c43cd10 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c45cd20 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c47cd30 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c49cd40 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c4bcd50 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c4dcd60 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c4fcd70 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c51cd80 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c53cd90 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c55cda0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c57cdb0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c59cdc0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c5bcdd0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c5dcde0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c5fcdf0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c61ce00 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c63ce10 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c65ce20 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c67ce30 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c69ce40 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c6bce50 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c6dce60 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c6fce70 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c71ce80 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c73ce90 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c75cea0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c77ceb0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c79cec0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c7bced0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c7dcee0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c7fcef0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c81cf00 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c83cf10 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c85cf20 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c87cf30 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c89cf40 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c8bcf50 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c8dcf60 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c8fcf70 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c91cf80 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c93cf90 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c95cfa0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c97cfb0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c99cfc0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c9bcfd0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c9dcfe0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0c9fcff0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ca1d000 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ca3d010 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ca5d020 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ca7d030 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ca9d040 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0cabd050 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0cadd060 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0cafd070 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0cb1d080 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0cb3d090 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0cb5d0a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0cb7d0b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0cb9d0c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0cbbd0d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0cbdd0e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0cbfd0f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0cc1d100 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0cc3d110 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0cc5d120 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0cc7d130 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0cc9d140 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ccbd150 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ccdd160 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0ccfd170 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0cd1d180 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb0cd3d190 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m210\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb087cab30 for tiles in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192mcompute_short_range_forces\u001b[0;36m:\u001b[0;32m211\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Computing short-range forces (using 8 tiles and 32 / 32 cores) done.\n",
"[02:24:52\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Acceleration loop, direction 0...\n",
"[02:24:52\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Acceleration loop, direction 0 done.\n",
"[02:24:52\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Kick loop, direction 0...\n",
"[02:24:52\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Kick loop, direction 0 done.\n",
"[02:24:52\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Acceleration loop, direction 1...\n",
"[02:24:52\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Acceleration loop, direction 1 done.\n",
"[02:24:52\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Kick loop, direction 1...\n",
"[02:24:52\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Kick loop, direction 1 done.\n",
"[02:24:52\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Acceleration loop, direction 2...\n",
"[02:24:52\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Acceleration loop, direction 2 done.\n",
"[02:24:52\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Kick loop, direction 2...\n",
"[02:24:52\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Kick loop, direction 2 done.\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08c1b190 for g_pad in \u001b[38;5;227mpmcola.c\u001b[0;36m:\u001b[38;5;192mkick_pm_cola\u001b[0;36m:\u001b[0;32m592\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08d1b1a0 for pp in \u001b[38;5;227mpmcola.c\u001b[0;36m:\u001b[38;5;192mkick_pm_cola\u001b[0;36m:\u001b[0;32m598\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]====|Kicking particles (using 32 cores) done.\n",
"[02:24:52\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]====|Drifting particles (using 32 cores)...\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mndrift=19\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mnkick=19\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246maiDrift=0.952500\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246maKick=0.976250\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mafDrift=1.000000\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246malpha_p=0.050507\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246malpha_lpt_1=0.000000\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246malpha_lpt_2=0.000000\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246malpha_ext=0.000000\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Drift loop, direction 0...\n",
"[02:24:52\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Drift loop, direction 0 done.\n",
"[02:24:52\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Drift loop, direction 1...\n",
"[02:24:52\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Drift loop, direction 1 done.\n",
"[02:24:52\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Drift loop, direction 2...\n",
"[02:24:52\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Drift loop, direction 2 done.\n",
"[02:24:52\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]====|Drifting particles (using 32 cores) done.\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]====|\u001b[38;5;246mGiven the available memory, 4095 threads could be allocated and 32 threads will be used in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel\u001b[0;36m:\u001b[0;32m347\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]====|\u001b[38;5;246mGiven the available memory, 4095 threads could be allocated and 32 threads will be used in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m73\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]====|Getting density contrast (using 32 cores and 32 arrays, parallel routine 1)...\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]======|\u001b[38;5;246mPerforming CiC binning...\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 0...\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148960000b60 for threadedDensity[13] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1488e0000b60 for threadedDensity[6] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148920000b60 for threadedDensity[12] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 6...\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 12...\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148980000b60 for threadedDensity[11] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148950000b60 for threadedDensity[9] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 11...\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148930000b60 for threadedDensity[14] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148958000b60 for threadedDensity[22] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1488f0000b60 for threadedDensity[24] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 22...\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 24...\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148948000b60 for threadedDensity[31] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 14...\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 31...\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148998000b60 for threadedDensity[25] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 9...\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 25...\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148940000b60 for threadedDensity[27] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148900000b60 for threadedDensity[16] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148928000b60 for threadedDensity[20] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148918000b60 for threadedDensity[15] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 20...\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 15...\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 27...\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 16...\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1488f8000b60 for threadedDensity[19] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1488dc000b60 for threadedDensity[17] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 19...\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 17...\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1489b8000b60 for threadedDensity[4] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148910000b60 for threadedDensity[23] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 4...\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 23...\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1489b0000b60 for threadedDensity[1] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148988000b60 for threadedDensity[28] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 1...\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 28...\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1488d0000b60 for threadedDensity[5] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1489a0000b60 for threadedDensity[3] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 5...\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 3...\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148908000b60 for threadedDensity[8] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1489a8000b60 for threadedDensity[30] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 8...\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 30...\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 13...\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148990000b60 for threadedDensity[21] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 21...\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148968000b60 for threadedDensity[10] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 10...\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148938000b60 for threadedDensity[18] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 18...\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1488e8000b60 for threadedDensity[2] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 2...\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148978000b60 for threadedDensity[26] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 26...\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x148970000b60 for threadedDensity[7] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 7...\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated and initialized memory (1048576 bytes) at 0x1488d8000b60 for threadedDensity[29] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m98\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 29...\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 10 done.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 18 done.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 19 done.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 17 done.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 2 done.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 11 done.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 31 done.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 25 done.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 7 done.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 9 done.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 26 done.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 15 done.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 16 done.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 0 done.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 4 done.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 23 done.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 12 done.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 6 done.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 5 done.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 3 done.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 29 done.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 8 done.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 1 done.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 28 done.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 13 done.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 21 done.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 27 done.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 24 done.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 22 done.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 14 done.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 30 done.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mPerforming CiC binning with thread 20 done.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]======|\u001b[38;5;246mPerforming CiC done.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]======|\u001b[38;5;246mPerforming CiC reduction...\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x1489b0000b60 for threadedDensity[1] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x1488e8000b60 for threadedDensity[2] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x1489a0000b60 for threadedDensity[3] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x1489b8000b60 for threadedDensity[4] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x1488d0000b60 for threadedDensity[5] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x1488e0000b60 for threadedDensity[6] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148970000b60 for threadedDensity[7] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148908000b60 for threadedDensity[8] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148950000b60 for threadedDensity[9] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148968000b60 for threadedDensity[10] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148980000b60 for threadedDensity[11] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148920000b60 for threadedDensity[12] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148960000b60 for threadedDensity[13] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148930000b60 for threadedDensity[14] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148918000b60 for threadedDensity[15] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148900000b60 for threadedDensity[16] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x1488dc000b60 for threadedDensity[17] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148938000b60 for threadedDensity[18] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x1488f8000b60 for threadedDensity[19] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148928000b60 for threadedDensity[20] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148990000b60 for threadedDensity[21] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148958000b60 for threadedDensity[22] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148910000b60 for threadedDensity[23] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x1488f0000b60 for threadedDensity[24] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148998000b60 for threadedDensity[25] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148978000b60 for threadedDensity[26] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148940000b60 for threadedDensity[27] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148988000b60 for threadedDensity[28] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x1488d8000b60 for threadedDensity[29] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x1489a8000b60 for threadedDensity[30] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x148948000b60 for threadedDensity[31] in \u001b[38;5;227mdensity.c\u001b[0;36m:\u001b[38;5;192mget_density_pm_parallel_1\u001b[0;36m:\u001b[0;32m176\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]======|\u001b[38;5;246mPerforming CiC reduction done.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]====|Getting density contrast (using 32 cores and 32 arrays, parallel routine 1) done.\n",
"[02:24:52\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]====|Getting gravitational potential, periodic boundary conditions (using 32 cores)...\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated memory (1081344 bytes) at 0x55cb08c1b190 for AUX in \u001b[38;5;227mpoisson_solvers.c\u001b[0;36m:\u001b[38;5;192msolve_poisson_DFT\u001b[0;36m:\u001b[0;32m106\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly freed memory allocated at 0x55cb08c1b190 for AUX in \u001b[38;5;227mpoisson_solvers.c\u001b[0;36m:\u001b[38;5;192msolve_poisson_DFT\u001b[0;36m:\u001b[0;32m116\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]====|Getting gravitational potential, periodic boundary conditions (using 32 cores) done.\n",
"[02:24:52\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]====|Kicking particles (using 32 cores)...\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mnkick=20\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mndrift=20\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246maiKick=0.976250\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246maDrift=1.000000\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mafKick=1.000000\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mbeta_delta=-0.011288\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mbeta_lpt_1=0.000000\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mbeta_lpt_2=0.000000\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mDIAGNOSTIC\u001b[00m]========|\u001b[38;5;246mbeta_ext=0.000000\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated memory (1048576 bytes) at 0x55cb08c1b190 for g_pad in \u001b[38;5;227mpmcola.c\u001b[0;36m:\u001b[38;5;192mkick_pm_cola\u001b[0;36m:\u001b[0;32m478\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]======|\u001b[38;5;246mCorrectly allocated memory (393216 bytes) at 0x55cb08d1b1a0 for pp in \u001b[38;5;227mpmcola.c\u001b[0;36m:\u001b[38;5;192mkick_pm_cola\u001b[0;36m:\u001b[0;32m554\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;113mSTATUS \u001b[00m]======|Computing short-range forces (using 8 tiles and 32 / 32 cores)...\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (8192 bytes) at 0x55cb087c1430 for tiles in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m57\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb08635220 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb08d7b1b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb08d9b1c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb08dbb1d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb08ddb1e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb08dfb1f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb08e1b200 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb08e3b210 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb08e5b220 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb08e7b230 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb08e9b240 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb08ebb250 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb08edb260 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb08efb270 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb08f1b280 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb08f3b290 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb08f5b2a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb08f7b2b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb08f9b2c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb08fbb2d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb08fdb2e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb08ffb2f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0901b300 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0903b310 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0905b320 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0907b330 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0909b340 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb090bb350 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb090db360 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb090fb370 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0911b380 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0913b390 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0915b3a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0917b3b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0919b3c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb091bb3d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb091db3e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb091fb3f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0921b400 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0923b410 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0925b420 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0927b430 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0929b440 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb092bb450 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb092db460 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb092fb470 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0931b480 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0933b490 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0935b4a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0937b4b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0939b4c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb093bb4d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb093db4e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb093fb4f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0941b500 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0943b510 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0945b520 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0947b530 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0949b540 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb094bb550 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb094db560 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb094fb570 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0951b580 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0953b590 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0955b5a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0957b5b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0959b5c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb095bb5d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb095db5e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb095fb5f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0961b600 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0963b610 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0965b620 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0967b630 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0969b640 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb096bb650 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb096db660 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb096fb670 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0971b680 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0973b690 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0975b6a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0977b6b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0979b6c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb097bb6d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb097db6e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb097fb6f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0981b700 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0983b710 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0985b720 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0987b730 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0989b740 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb098bb750 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb098db760 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb098fb770 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0991b780 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0993b790 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0995b7a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0997b7b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0999b7c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb099bb7d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb099db7e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb099fb7f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09a1b800 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09a3b810 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09a5b820 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09a7b830 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09a9b840 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09abb850 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09adb860 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09afb870 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09b1b880 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09b3b890 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09b5b8a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09b7b8b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09b9b8c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09bbb8d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09bdb8e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09bfb8f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09c1b900 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09c3b910 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09c5b920 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09c7b930 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09c9b940 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09cbb950 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09cdb960 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09cfb970 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09d1b980 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09d3b990 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09d5b9a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09d7b9b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09d9b9c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09dbb9d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09ddb9e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09dfb9f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09e1ba00 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09e3ba10 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09e5ba20 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09e7ba30 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09e9ba40 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09ebba50 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09edba60 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09efba70 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09f1ba80 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09f3ba90 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09f5baa0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09f7bab0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09f9bac0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09fbbad0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09fdbae0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb09ffbaf0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a01bb00 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a03bb10 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a05bb20 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a07bb30 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a09bb40 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a0bbb50 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a0dbb60 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a0fbb70 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a11bb80 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a13bb90 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a15bba0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a17bbb0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a19bbc0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a1bbbd0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a1dbbe0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a1fbbf0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a21bc00 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a23bc10 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a25bc20 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a27bc30 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a29bc40 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a2bbc50 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a2dbc60 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a2fbc70 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a31bc80 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a33bc90 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a35bca0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a37bcb0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a39bcc0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a3bbcd0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a3dbce0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a3fbcf0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a41bd00 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a43bd10 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a45bd20 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a47bd30 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a49bd40 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a4bbd50 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a4dbd60 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a4fbd70 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a51bd80 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a53bd90 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a55bda0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a57bdb0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a59bdc0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a5bbdd0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a5dbde0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a5fbdf0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a61be00 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a63be10 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a65be20 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a67be30 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a69be40 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a6bbe50 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a6dbe60 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a6fbe70 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a71be80 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a73be90 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a75bea0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a77beb0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a79bec0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a7bbed0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a7dbee0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a7fbef0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a81bf00 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a83bf10 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a85bf20 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a87bf30 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a89bf40 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a8bbf50 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a8dbf60 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a8fbf70 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a91bf80 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a93bf90 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a95bfa0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a97bfb0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a99bfc0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a9bbfd0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a9dbfe0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0a9fbff0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0aa1c000 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0aa3c010 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0aa5c020 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0aa7c030 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0aa9c040 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0aabc050 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0aadc060 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0aafc070 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ab1c080 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ab3c090 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ab5c0a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ab7c0b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ab9c0c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0abbc0d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0abdc0e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0abfc0f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ac1c100 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ac3c110 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ac5c120 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ac7c130 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ac9c140 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0acbc150 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0acdc160 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0acfc170 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ad1c180 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ad3c190 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ad5c1a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ad7c1b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ad9c1c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0adbc1d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0addc1e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0adfc1f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ae1c200 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ae3c210 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ae5c220 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ae7c230 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ae9c240 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0aebc250 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0aedc260 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0aefc270 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0af1c280 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0af3c290 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0af5c2a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0af7c2b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0af9c2c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0afbc2d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0afdc2e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0affc2f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b01c300 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b03c310 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b05c320 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b07c330 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b09c340 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b0bc350 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b0dc360 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b0fc370 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b11c380 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b13c390 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b15c3a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b17c3b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b19c3c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b1bc3d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b1dc3e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b1fc3f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b21c400 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b23c410 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b25c420 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b27c430 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b29c440 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b2bc450 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b2dc460 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b2fc470 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b31c480 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b33c490 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b35c4a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b37c4b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b39c4c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b3bc4d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b3dc4e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b3fc4f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b41c500 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b43c510 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b45c520 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b47c530 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b49c540 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b4bc550 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b4dc560 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b4fc570 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b51c580 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b53c590 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b55c5a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b57c5b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b59c5c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b5bc5d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b5dc5e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b5fc5f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b61c600 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b63c610 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b65c620 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b67c630 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b69c640 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b6bc650 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b6dc660 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b6fc670 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b71c680 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b73c690 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b75c6a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b77c6b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b79c6c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b7bc6d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b7dc6e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b7fc6f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b81c700 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b83c710 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b85c720 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b87c730 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b89c740 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b8bc750 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b8dc760 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b8fc770 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b91c780 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b93c790 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b95c7a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b97c7b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b99c7c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b9bc7d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b9dc7e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0b9fc7f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ba1c800 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ba3c810 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ba5c820 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ba7c830 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0ba9c840 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0babc850 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0badc860 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bafc870 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bb1c880 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bb3c890 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bb5c8a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bb7c8b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bb9c8c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bbbc8d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bbdc8e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bbfc8f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bc1c900 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bc3c910 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bc5c920 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bc7c930 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bc9c940 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bcbc950 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bcdc960 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bcfc970 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bd1c980 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bd3c990 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bd5c9a0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bd7c9b0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bd9c9c0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bdbc9d0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bddc9e0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bdfc9f0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0be1ca00 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0be3ca10 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0be5ca20 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0be7ca30 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0be9ca40 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bebca50 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bedca60 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0befca70 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bf1ca80 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bf3ca90 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bf5caa0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bf7cab0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bf9cac0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bfbcad0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bfdcae0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0bffcaf0 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u001b[38;5;246m.\u001b[00m\n",
"[02:24:52\u001b[00m|\u001b[38;5;246mMEMORY \u001b[00m]========|\u001b[38;5;246mCorrectly allocated memory (131072 bytes) at 0x55cb0c01cb00 for tile_indices in \u001b[38;5;227mp3m.c\u001b[0;36m:\u001b[38;5;192massign_particles_to_tiles\u001b[0;36m:\u001b[0;32m59\u001b[00m\u00